diff options
author | Guido van Rossum <guido@python.org> | 2012-06-22 22:18:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2012-06-22 22:18:38 (GMT) |
commit | 8e0d25504c5a7309bdebda33b3aa9b8213896907 (patch) | |
tree | b7b95aae5a041d01b70d3d26d7d3b1b853749af9 /Misc | |
parent | 95c1c48fd6841230c6e8600b604e8460010ab399 (diff) | |
parent | 541b7c89ff179a945fb4f5745efc484df646a751 (diff) | |
download | cpython-8e0d25504c5a7309bdebda33b3aa9b8213896907.zip cpython-8e0d25504c5a7309bdebda33b3aa9b8213896907.tar.gz cpython-8e0d25504c5a7309bdebda33b3aa9b8213896907.tar.bz2 |
Merge
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -42,6 +42,14 @@ Library - Issue: #15138: base64.urlsafe_{en,de}code() are now 3-4x faster. +- Issue #444582: Add shutil.which, for finding programs on the system path. + Original patch by Erik Demaine, with later iterations by Jan Killian + and Brian Curtin. + +- Issue #14837: SSL errors now have ``library`` and ``reason`` attributes + describing precisely what happened and in which OpenSSL submodule. The + str() of a SSLError is also enhanced accordingly. + - Issue #9527: datetime.astimezone() method will now supply a class timezone instance corresponding to the system local timezone when called with no arguments. @@ -149,6 +157,9 @@ Library - Issue #14963: Convert contextlib.ExitStack.__exit__ to use an iterative algorithm (Patch by Alon Horev) +- Issue #14785: Add sys._debugmallocstats() to help debug low-level memory + allocation issues + C-API ----- |