summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-09-29 22:53:58 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-09-29 22:53:58 (GMT)
commit10e4b2545e62614c5f2c6519a02af7508e153889 (patch)
treed8518c025ae87f41e8552c59e3a4e1767d98b3d9 /Misc/NEWS
parent9baa5b2de2e1bd4d56791de8144f737f65b89c74 (diff)
parent2b76ce6d27c5395d88e7aef3a2bab811afc5d8cb (diff)
downloadcpython-10e4b2545e62614c5f2c6519a02af7508e153889.zip
cpython-10e4b2545e62614c5f2c6519a02af7508e153889.tar.gz
cpython-10e4b2545e62614c5f2c6519a02af7508e153889.tar.bz2
merge 3.4 (closes #22518)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS62
1 files changed, 62 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 77a2725..3574e42 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #22518: Fix integer overflow issues in latin-1 encoding.
+
- Issue #16324: _charset parameter of MIMEText now also accepts
email.charset.Charset instances. Initial patch by Claude Paroz.
@@ -27,6 +29,66 @@ Core and Builtins
argument contains not permitted null character or byte.
- Issue #22258: Fix the internal function set_inheritable() on Illumos.
+
+Library
+-------
+
+- Issue #22448: Improve canceled timer handles cleanup to prevent
+ unbound memory usage. Patch by Joshua Moore-Oliva.
+
+Build
+-----
+
+- Issue #16537: Check whether self.extensions is empty in setup.py. Patch by
+ Jonathan Hosmer.
+
+
+What's New in Python 3.4.2?
+===========================
+
+Release date: 2014-10-06
+
+Core and Builtins
+-----------------
+
+Library
+-------
+
+- Issue #10510: distutils register and upload methods now use HTML standards
+ compliant CRLF line endings.
+
+- Issue #9850: Fixed macpath.join() for empty first component. Patch by
+ Oleg Oshmyan.
+
+- Issue #22427: TemporaryDirectory no longer attempts to clean up twice when
+ used in the with statement in generator.
+
+- Issue #20912: Now directories added to ZIP file have correct Unix and MS-DOS
+ directory attributes.
+
+- Issue #21866: ZipFile.close() no longer writes ZIP64 central directory
+ records if allowZip64 is false.
+
+- Issue #22415: Fixed debugging output of the GROUPREF_EXISTS opcode in the re
+ module. Removed trailing spaces in debugging output.
+
+- Issue #22423: Unhandled exception in thread no longer causes unhandled
+ AttributeError when sys.stderr is None.
+
+- Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects
+ line buffering, rather than block buffering. Patch by Akira Li.
+
+
+What's New in Python 3.4.2rc1?
+==============================
+
+Release date: 2014-09-22
+
+Core and Builtins
+-----------------
+
+- Issue #22258: Fix the the internal function set_inheritable() on Illumos.
+>>>>>>> other
This platform exposes the function ``ioctl(FIOCLEX)``, but calling it fails
with errno is ENOTTY: "Inappropriate ioctl for device". set_inheritable()
now falls back to the slower ``fcntl()`` (``F_GETFD`` and then ``F_SETFD``).