summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-01 15:53:14 (GMT)
committerGeorg Brandl <georg@python.org>2009-01-01 15:53:14 (GMT)
commitdb7b6b95828c25df6f428bc21a5d6d1cb68287a0 (patch)
treec423fe3ac1fd963291cfabd21310d999c9fff4a2 /Misc
parentbce3977be773b7c7c6b2a587ab8eec223a2f2b46 (diff)
downloadcpython-db7b6b95828c25df6f428bc21a5d6d1cb68287a0.zip
cpython-db7b6b95828c25df6f428bc21a5d6d1cb68287a0.tar.gz
cpython-db7b6b95828c25df6f428bc21a5d6d1cb68287a0.tar.bz2
Merged revisions 67953 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67953 | georg.brandl | 2008-12-27 19:20:04 +0100 (Sat, 27 Dec 2008) | 3 lines Patch #4739 by David Laban: add symbols to pydoc help topics, so that ``help('@')`` works as expected. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 62b7a85..30668e6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -83,6 +83,9 @@ Library
- Issue #4444: Allow assertRaises() to be used as a context handler, so that
the code under test can be written inline if more practical.
+- Issue #4739: Add pydoc help topics for symbols, so that e.g. help('@')
+ works as expected in the interactive environment.
+
- Issue #4756: zipfile.is_zipfile() now supports file-like objects. Patch by
Gabriel Genellina.