Skip to content

Commit 4d09177

Browse files
committed
Fix merge conflict
1 parent 66528d6 commit 4d09177

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

mypyc/common.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
GENERATOR_ATTRIBUTE_PREFIX: Final = "__mypyc_generator_attribute__"
3232
CPYFUNCTION_NAME = "__cpyfunction__"
3333

34-
<<<<<<< HEAD
3534

3635
def module_import_state_name(module_name: str) -> str:
3736
return f"{IMPORT_STATE_PREFIX}{exported_name(module_name)}"
@@ -52,10 +51,9 @@ def module_init_name(module_name: str) -> str:
5251
def module_exec_name(module_name: str) -> str:
5352
return f"CPyExec_{exported_name(module_name)}"
5453

55-
=======
54+
5655
# Omits the prefix added to user attribute fields, so it cannot collide with one.
5756
RUNNING_FIELD: Final = "mypyc_running"
58-
>>>>>>> master
5957

6058
# Max short int we accept as a literal is based on 32-bit platforms,
6159
# so that we can just always emit the same code.

0 commit comments

Comments
 (0)