summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-03-21 03:15:22 +0100
committerÉric Araujo <merwok@netwok.org>2011-03-21 03:15:22 +0100
commitd8c73c650ce5554f3757f17cf0f979a897decf80 (patch)
tree272dc1b14821e930e23366e14a328313f5d47009
parent56f9a0221b097590436add843b6c96cf8b657af4 (diff)
parente788ace5abccfd89f94a28630d6e0019921fe2cb (diff)
downloadcpython-git-d8c73c650ce5554f3757f17cf0f979a897decf80.tar.gz
Fix some issue references in NEWS
-rw-r--r--Misc/NEWS10
1 files changed, 5 insertions, 5 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5dc8a64918..0bf7550864 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -515,8 +515,8 @@ Library
time. `sys.stderr` now looked up at instantiation time. Fix contributed by
Mark Roddy.
-- Issue #10753: Characters ';','=' and ',' in the PATH_INFO environment variable
- won't be quoted when the URI is constructed by the wsgiref.util 's request_uri
+- Issue #10753: Characters ';', '=' and ',' in the PATH_INFO environment variable
+ won't be quoted when the URI is constructed by the wsgiref.util's request_uri
method. According to RFC 3986, these characters can be a part of params in
PATH component of URI and need not be quoted.
@@ -986,9 +986,9 @@ Library
comment prefixes, name of the DEFAULT section, empty lines in multiline
values, and indentation.
-- Issue 10326: unittest.TestCase instances can be pickled.
+- Issue #10326: unittest.TestCase instances can be pickled.
-- Issue 9926: Wrapped TestSuite subclass does not get __call__ executed.
+- Issue #9926: Wrapped TestSuite subclass does not get __call__ executed.
- Issue #9920: Skip tests for cmath.atan and cmath.atanh applied to complex
zeros on systems where the log1p function fails to respect the sign of zero.
@@ -1639,7 +1639,7 @@ Library
- Issue #9853: Fix the signature of SSLSocket.recvfrom() and SSLSocket.sendto()
to match the corresponding socket methods.
-- Issue 9840: Added a decorator to reprlib for wrapping __repr__ methods to make
+- Issue #9840: Added a decorator to reprlib for wrapping __repr__ methods to make
them handle recursive calls within the same thread.
- logging: Enhanced HTTPHandler with secure and credentials initializers.