summaryrefslogtreecommitdiffstats
path: root/Lib/modulefinder.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/modulefinder.py')
-rw-r--r--Lib/modulefinder.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/Lib/modulefinder.py b/Lib/modulefinder.py
index a36f1b6..e0d2998 100644
--- a/Lib/modulefinder.py
+++ b/Lib/modulefinder.py
@@ -619,13 +619,7 @@ class ModuleFinder:
if isinstance(consts[i], type(co)):
consts[i] = self.replace_paths_in_code(consts[i])
- return types.CodeType(co.co_argcount, co.co_posonlyargcount,
- co.co_kwonlyargcount, co.co_nlocals,
- co.co_stacksize, co.co_flags,
- co.co_code, tuple(consts), co.co_names,
- co.co_varnames, new_filename, co.co_name,
- co.co_firstlineno, co.co_lnotab, co.co_freevars,
- co.co_cellvars)
+ return co.replace(co_consts=tuple(consts), co_filename=new_filename)
def test():