summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorCharles-Fran?ois Natali <cf.natali@gmail.com>2013-08-29 19:27:17 +0200
committerCharles-Fran?ois Natali <cf.natali@gmail.com>2013-08-29 19:27:17 +0200
commit1dfd8b3fa31b0380c577e4c925b431d27915e623 (patch)
tree737ba1f27244f21218c669e69fb1b75055cd32c1 /Misc
parent82c395f889032d37aeadafaceabe7d0769090ba0 (diff)
parentb59d5debe870359e4bb32c72325efeb7b408796e (diff)
downloadcpython-1dfd8b3fa31b0380c577e4c925b431d27915e623.tar.gz
Merge.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS2
-rw-r--r--Misc/NEWS20
2 files changed, 22 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index e7edc25c2d..1eaa897a35 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -814,6 +814,7 @@ Daniel May
Madison May
Lucas Maystre
Arnaud Mazin
+Matt McClure
Rebecca McCreary
Kirk McDonald
Chris McDonough
@@ -1336,6 +1337,7 @@ Kevin Walzer
Rodrigo Steinmuller Wanderley
Ke Wang
Greg Ward
+Tom Wardill
Zachary Ware
Jonas Wagner
Barry Warsaw
diff --git a/Misc/NEWS b/Misc/NEWS
index f7efbeb0c9..f60b93140d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ Projected Release date: 2013-09-08
Core and Builtins
-----------------
+- Issue #18571: Implementation of the PEP 446: file descriptors and file
+ handles are now created non-inheritable; add functions
+ os.get/set_inheritable(), os.get/set_handle_inheritable() and
+ socket.socket.get/set_inheritable().
+
- Issue #11619: The parser and the import machinery do not encode Unicode
filenames anymore on Windows.
@@ -46,6 +51,10 @@ Core and Builtins
Library
-------
+- Issue #17974: Switch unittest from using getopt to using argparse.
+
+- Issue #11798: TestSuite now drops references to own tests after execution.
+
- Issue #16611: http.cookie now correctly parses the 'secure' and 'httponly'
cookie flags.
@@ -146,10 +155,21 @@ Library
Tests
-----
+- Issue #16799: Switched from getopt to argparse style in regrtest's argument
+ parsing. Added more tests for regrtest's argument parsing.
+
- Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as
possible, since "localhost" goes through a DNS lookup under recent Windows
versions.
+Documentation
+-------------
+
+- Issue #18743: Fix references to non-existant "StringIO" module.
+
+- Issue #18783: Removed existing mentions of Python long type in docstrings,
+ error messages and comments.
+
What's New in Python 3.4.0 Alpha 1?
===================================