Skip to content

Commit 44f76f7

Browse files
Removed code that I was using for testing
1 parent 2b96e8d commit 44f76f7

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

bpython/importcompletion.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -135,16 +135,7 @@ def complete(cursor_offset, line):
135135

136136
def find_modules(path):
137137
"""Find all modules (and packages) for a given directory."""
138-
139-
global nameSubname
140-
nameSubname = []
141-
142-
#Decides if you are using the first method: usng name subname (1),
143-
# the second method: using pathname (2) or the original (3), os.realpath
144-
global useNameSubname
145-
useNameSubname = 4
146-
#print("useNameSubname:", useNameSubname)
147-
138+
148139
if not os.path.isdir(path):
149140
# Perhaps a zip file
150141
return

0 commit comments

Comments
 (0)