summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-12-15 19:24:34 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-12-15 19:24:34 (GMT)
commitc0d49d82de2fc44aa8b690df25e465e202dba40b (patch)
tree38c604fb465742d69f24409c2016deeb0f27255b /Misc
parent060ebedc406c657ab1acfd99f2eea18ec7e76c46 (diff)
downloadcpython-c0d49d82de2fc44aa8b690df25e465e202dba40b.zip
cpython-c0d49d82de2fc44aa8b690df25e465e202dba40b.tar.gz
cpython-c0d49d82de2fc44aa8b690df25e465e202dba40b.tar.bz2
Fix typo and improve wording a bit.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4675e5f..adf6718 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,7 +13,7 @@ Core and builtins
-----------------
- Removed PendingDeprecationWarning from apply(). apply() remains
- deprecated, but the nuissance warning will not be issued.
+ deprecated, but the nuisance warning will not be issued.
- At Python shutdown time (Py_Finalize()), 2.3 called cyclic garbage
collection twice, both before and after tearing down modules. The
@@ -114,9 +114,9 @@ Core and builtins
When comparing containers with cyclic references to themselves it
will now just hit the recursion limit. See SF patch 825639.
-- str and unicode builtin types now have s.rsplit() method that is
- same as s.split() except that it scans the string from the end
- working forward. See SF feature request 801847.
+- str and unicode builtin types now have rsplit() method that is
+ same as split() except that it scans the string from the end
+ working towards the beginning. See SF feature request 801847.
Extension modules
-----------------