(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/module-rlcompleter.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/module-rlcompleter.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/unix.html| ]]
|
Python Library Reference
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/contents.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/modindex.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/genindex.html| ]]
|
Previous: 7.18 rlcompleter Up: 7.18 rlcompleter Next: 8. Unix Specific Services
7.18.1 Completer Objects
Completer objects have the following method:
- complete (text, state)
- Return the stateth completion for text. If called for text that doesn't include a period character ("."), it will complete from names currently defined in __main__, __builtin__ and keywords (as defined by the keyword module).If called for a dotted name, it will try to evaluate anything without obvious side-effects (i.e., functions will not be evaluated, but it can generate calls to __getattr__()) upto the last part, and find matches for the rest via the dir() function.
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/module-rlcompleter.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/module-rlcompleter.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/unix.html| ]]
|
Python Library Reference
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/contents.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/modindex.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/lib/genindex.html| ]]
|
Previous: 7.18 rlcompleter Up: 7.18 rlcompleter Next: 8. Unix Specific Services
See About this document... for information on suggesting changes.