diff options
author | Just van Rossum <just@letterror.com> | 2003-02-01 10:29:45 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2003-02-01 10:29:45 (GMT) |
commit | a212c5c37ff7e24c5d30a4fea1a13c79d176f50e (patch) | |
tree | 1e3deed79e461e55f423c43eea6f53702dda89bf /Lib/modulefinder.py | |
parent | 3bd8d0fb9c153552cd2593ecdeb80023b7776930 (diff) | |
download | cpython-a212c5c37ff7e24c5d30a4fea1a13c79d176f50e.zip cpython-a212c5c37ff7e24c5d30a4fea1a13c79d176f50e.tar.gz cpython-a212c5c37ff7e24c5d30a4fea1a13c79d176f50e.tar.bz2 |
removed bizarre construct, no idea why it was there...
Diffstat (limited to 'Lib/modulefinder.py')
-rw-r--r-- | Lib/modulefinder.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/modulefinder.py b/Lib/modulefinder.py index 68ea9b9..fcb80de 100644 --- a/Lib/modulefinder.py +++ b/Lib/modulefinder.py @@ -412,7 +412,6 @@ class ModuleFinder: keys = self.modules.keys() keys.sort() for key in keys: - continue m = self.modules[key] if m.__path__: print "P", |