summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-02-28 22:42:54 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-02-28 22:42:54 (GMT)
commit1c205518a35939ef555c74d0e2f8954a5e1828e1 (patch)
tree382366737c04762fa5b6c20414c86177d3acec3e /Misc
parente92951f8da5747f5fd00c7388d9fd8e811422cb3 (diff)
downloadcpython-1c205518a35939ef555c74d0e2f8954a5e1828e1.zip
cpython-1c205518a35939ef555c74d0e2f8954a5e1828e1.tar.gz
cpython-1c205518a35939ef555c74d0e2f8954a5e1828e1.tar.bz2
Issue #19980: Improved help() for non-recognized strings. help('') now
shows the help on str. help('help') now shows the help on help(). Original patch by Mark Lawrence.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 861216e..7707f67 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -789,6 +789,7 @@ Ben Laurie
Simon Law
Julia Lawall
Chris Lawrence
+Mark Lawrence
Brian Leair
Mathieu Leduc-Hamel
Amandine Lee
diff --git a/Misc/NEWS b/Misc/NEWS
index e9560e3..f1a1410 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,11 @@ Core and Builtins
Library
-------
+
+- Issue #19980: Improved help() for non-recognized strings. help('') now
+ shows the help on str. help('help') now shows the help on help().
+ Original patch by Mark Lawrence.
+
- Issue #23521: Corrected pure python implementation of timedelta division.
* Eliminated OverflowError from timedelta * float for some floats;