Lines Matching defs:list
83 """Convert sys.path into a list of absolute, existing, unique paths."""
312 'Sort the attrs list in-place by _fields and then alphabetically by name'
627 def multicolumn(self, list, format):
628 """Format a list of items into a multi-column list."""
630 rows = (len(list) + 3) // 4
634 if i < len(list):
635 result = result + format(list[i]) + '<br>\n'
948 # a dict or list value).
1811 # list of needed labels in Doc/tools/extensions/pyspecific.py and
2077 To get a list of available modules, keywords, symbols, or topics, type
2079 with a one-line summary of what it does; to list the modules whose name
2083 def list(self, items, columns=4, width=80):
2084 items = list(sorted(items))
2098 Here is a list of the Python keywords. Enter any keyword to get more help.
2101 self.list(self.keywords.keys())
2105 Here is a list of the punctuation symbols which Python assigns special meaning
2109 self.list(self.symbols.keys())
2113 Here is a list of available topics. Enter any topic name to get more help.
2116 self.list(self.topics.keys())
2185 Here is a list of modules whose name or summary contains '{}'.
2192 Please wait a moment while I gather a list of all available modules...
2204 self.list(modules.keys())
2720 Returns a new path entry list, or None if no adjustment is needed.