HomeSort by relevance Sort by last modified time
    Searched refs:bigl (Results 1 - 2 of 2) sorted by null

  /external/python/cpython2/Lib/idlelib/
AutoComplete.py 187 bigl = eval("dir()", namespace)
188 bigl.sort()
189 if "__all__" in bigl:
192 smalll = [s for s in bigl if s[:1] != '_']
196 bigl = dir(entity)
197 bigl.sort()
198 if "__all__" in bigl:
201 smalll = [s for s in bigl if s[:1] != '_']
210 bigl = os.listdir(expandedpath)
211 bigl.sort(
    [all...]
  /external/python/cpython3/Lib/idlelib/
autocomplete.py 187 bigl = eval("dir()", namespace)
188 bigl.sort()
189 if "__all__" in bigl:
192 smalll = [s for s in bigl if s[:1] != '_']
196 bigl = dir(entity)
197 bigl.sort()
198 if "__all__" in bigl:
201 smalll = [s for s in bigl if s[:1] != '_']
210 bigl = os.listdir(expandedpath)
211 bigl.sort(
    [all...]

Completed in 755 milliseconds