summaryrefslogtreecommitdiffstats
path: root/Lib/modulefinder.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-01-29 03:49:43 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-01-29 03:49:43 (GMT)
commit2c60f7a13697bbc19c4d5ef0b052c34cf1848244 (patch)
tree7e33cdc40b1e60ad8729008f344bb8849e1373e1 /Lib/modulefinder.py
parentc0c12b57070a5b494662bebc418e3958bf5bdbee (diff)
downloadcpython-2c60f7a13697bbc19c4d5ef0b052c34cf1848244.zip
cpython-2c60f7a13697bbc19c4d5ef0b052c34cf1848244.tar.gz
cpython-2c60f7a13697bbc19c4d5ef0b052c34cf1848244.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/modulefinder.py')
-rw-r--r--Lib/modulefinder.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/modulefinder.py b/Lib/modulefinder.py
index 9d524c2..68ea9b9 100644
--- a/Lib/modulefinder.py
+++ b/Lib/modulefinder.py
@@ -514,9 +514,9 @@ class ModuleFinder:
if isinstance(consts[i], type(co)):
consts[i] = self.replace_paths_in_code(consts[i])
- return new.code(co.co_argcount, 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,
+ return new.code(co.co_argcount, 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)