summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-05-26 15:06:47 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-05-26 15:06:47 (GMT)
commit08ae8bb9374b762e53f8e569e293bc24bb081fef (patch)
tree0f6068b3ee211f1b558d8212a94db9c5fd0e0139
parent42fc33a5b6c90e073596e16b32d49e394129d355 (diff)
downloadcpython-08ae8bb9374b762e53f8e569e293bc24bb081fef.zip
cpython-08ae8bb9374b762e53f8e569e293bc24bb081fef.tar.gz
cpython-08ae8bb9374b762e53f8e569e293bc24bb081fef.tar.bz2
Move test_packaging news entries to the tests section
-rw-r--r--Misc/NEWS12
1 files changed, 6 insertions, 6 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b7f3907..8735965 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -166,9 +166,6 @@ Library
- Issue #12175: FileIO.readall() now only reads the file position and size
once.
-- Issue #12180: Fixed a few remaining errors in test_packaging when no
- threading.
-
- Issue #12175: RawIOBase.readall() now returns None if read() returns None.
- Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError
@@ -213,9 +210,6 @@ Library
- Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymore
to be able to unload the module.
-- Issue #12120, #12119: skip a test in packaging and distutils
- if sys.dont_write_bytecode is set to True.
-
- Issue #12065: connect_ex() on an SSL socket now returns the original errno
when the socket's timeout expires (it used to return None).
@@ -749,6 +743,12 @@ Extension Modules
Tests
-----
+- Issue #12180: Fixed a few remaining errors in test_packaging when no
+ threading.
+
+- Issue #12120, #12119: skip a test in packaging and distutils
+ if sys.dont_write_bytecode is set to True.
+
- Issue #12096: Fix a race condition in test_threading.test_waitfor(). Patch
written by Charles-François Natali.