summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2012-10-07 21:48:36 (GMT)
committerChris Jerdonek <chris.jerdonek@gmail.com>2012-10-07 21:48:36 (GMT)
commit83fe2e1c22e6ff72a308e82e1e24ca03f8c51339 (patch)
treef8e8071faf6e7d06b812c8fa9090c41c57ad91d3 /Misc
parentc3e5b10ae76c3ffe8672e91a5478a19e35b60220 (diff)
downloadcpython-83fe2e1c22e6ff72a308e82e1e24ca03f8c51339.zip
cpython-83fe2e1c22e6ff72a308e82e1e24ca03f8c51339.tar.gz
cpython-83fe2e1c22e6ff72a308e82e1e24ca03f8c51339.tar.bz2
Issue #14783: Improve int() docstring and also str(), range(), and slice().
This commit rewrites the docstring for int() to incorporate the documentation changes made in issue #16036. It also switches the docstrings for int(), str(), range(), and slice() to use multi-line signatures.
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 bc5470a..5cd69b4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #14783: Improve int() docstring and switch docstrings for str(),
+ range(), and slice() to use multi-line signatures.
+
- Issue #15379: Fix passing of non-BMP characters as integers for the charmap
decoder (already working as unicode strings). Patch by Serhiy Storchaka.