diff options
Diffstat (limited to 'Lib/rlcompleter.py')
-rw-r--r-- | Lib/rlcompleter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/rlcompleter.py b/Lib/rlcompleter.py index 3075a14..de4c024 100644 --- a/Lib/rlcompleter.py +++ b/Lib/rlcompleter.py @@ -5,9 +5,9 @@ completes keywords, built-ins and globals in a selectable namespace (which defaults to __main__); when completing NAME.NAME..., it evaluates (!) the expression up to the last dot and completes its attributes. -It's very cool to do "import string" type "string.", hit the +It's very cool to do "import sys" type "sys.", hit the completion key (twice), and see the list of names defined by the -string module! +sys module! Tip: to use the tab key as the completion key, call |