diff options
author | Georg Brandl <georg@python.org> | 2010-10-06 08:57:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-06 08:57:55 (GMT) |
commit | f243dad554c6ddc9cd574d84348fd5d6728f8890 (patch) | |
tree | ed0f1355fe7febb1dd7e43b0c22776e40831befe /Doc/library/readline.rst | |
parent | 4b05466e25b686fed9084452e88e7a8b7728a843 (diff) | |
download | cpython-f243dad554c6ddc9cd574d84348fd5d6728f8890.zip cpython-f243dad554c6ddc9cd574d84348fd5d6728f8890.tar.gz cpython-f243dad554c6ddc9cd574d84348fd5d6728f8890.tar.bz2 |
Merged revisions 85008,85011,85228,85240 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
........
r85008 | georg.brandl | 2010-09-25 15:30:03 +0200 (Sa, 25 Sep 2010) | 1 line
#9944: fix typo.
........
r85011 | georg.brandl | 2010-09-25 18:56:36 +0200 (Sa, 25 Sep 2010) | 1 line
#9562: slight clarification.
........
r85228 | georg.brandl | 2010-10-05 09:16:01 +0200 (Di, 05 Okt 2010) | 1 line
Indent version tags properly.
........
r85240 | georg.brandl | 2010-10-06 07:08:32 +0200 (Mi, 06 Okt 2010) | 1 line
#10034: import readline in longer example.
........
Diffstat (limited to 'Doc/library/readline.rst')
-rw-r--r-- | Doc/library/readline.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst index e99d317..218f81e 100644 --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -196,6 +196,7 @@ normally be executed automatically during interactive sessions from the user's :envvar:`PYTHONSTARTUP` file. :: import os + import readline histfile = os.path.join(os.environ["HOME"], ".pyhist") try: readline.read_history_file(histfile) |