diff options
author | Raymond Hettinger <python@rcn.com> | 2009-04-04 13:20:55 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-04-04 13:20:55 (GMT) |
commit | 8e3305127242feec58d8874742b2078545adfadd (patch) | |
tree | bf2d91ed05524597081c314ffe38a670c92ab43b /Doc/whatsnew/3.1.rst | |
parent | f84dfe52eada203a39e31cb96f6cb1df48b5faaf (diff) | |
download | cpython-8e3305127242feec58d8874742b2078545adfadd.zip cpython-8e3305127242feec58d8874742b2078545adfadd.tar.gz cpython-8e3305127242feec58d8874742b2078545adfadd.tar.bz2 |
Note an improvement to pydoc.
Diffstat (limited to 'Doc/whatsnew/3.1.rst')
-rw-r--r-- | Doc/whatsnew/3.1.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.1.rst b/Doc/whatsnew/3.1.rst index f010266..dd1068d 100644 --- a/Doc/whatsnew/3.1.rst +++ b/Doc/whatsnew/3.1.rst @@ -232,6 +232,11 @@ Some smaller changes made to the core Python language are: (Suggested by Antoine Pitrou and Jesse Noller. Implemented by Jack Diedrich; :issue:`5228`.) +* Add :mod:`pydoc` help topics for symbols so that ``help('@')`` + works as expected in the interactive environment. + + (Contributed by David Laban; :issue:`4739`.) + * The :mod:`unittest` module now supports skipping individual tests or classes of tests. And it supports marking a test as a expected failure, a test that is known to be broken, but shouldn't be counted as a failure on a |