summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
Commit message (Collapse)AuthorAgeFilesLines
...
* [3.5] bpo-29943: Do not replace the function PySlice_GetIndicesEx() with a ↵Serhiy Storchaka2017-04-161-2/+2
| | | | | macro (#1049) if Py_LIMITED_API is not defined.
* bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is ↵Xiang Zhang2017-04-151-3/+5
| | | | present (#1130) (#1151)
* [3.5] bpo-29694: race condition in pathlib mkdir with flags parents=True ↵Mariatta2017-04-141-0/+4
| | | | | (GH-1089). (GH-1127) (cherry picked from commit 22a594a0047d7706537ff2ac676cdc0f1dcb329c)
* [3.5] bpo-29692: contextlib.contextmanager may incorrectly unchain ↵Mariatta2017-04-131-0/+3
| | | | | | | | | | | RuntimeError (GH-949) (#1107) contextlib._GeneratorContextManager.__exit__ includes a special case to deal with PEP 479 RuntimeErrors created when `StopIteration` is thrown into the context manager body. Previously this check was too permissive, and undid one level of chaining on *all* RuntimeError instances, not just those that wrapped a StopIteration instance. (cherry picked from commit 00c75e9a45ff0366c185e9e8a2e23af5a35481b0)
* bpo-26985: Add missing info of code object in inspect documentation ↵Xiang Zhang2017-04-131-0/+2
| | | | (GH-1090) (GH-1100)
* bpo-29998: Pickling and copying ImportError now preserves name and path ↵Serhiy Storchaka2017-04-081-0/+3
| | | | | | (#1010) (#1043) attributes. (cherry picked from commit b785396ab451b0c9d6ae9ee5a9e56c810209a6cb)
* Miscellaneous minor fixes of Misc/NEWS formatting. (#1002) (#1006)Serhiy Storchaka2017-04-051-9/+9
| | | (cherry picked from commit a0157b5f11e621f2196af4e918b9f07688a6cd1c)
* bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#912)T. Wouters2017-03-301-0/+3
| | | | | | Fix the use of recursion in itertools.chain.from_iterable. Using recursion is unnecessary, and can easily cause stack overflows, especially when building in low optimization modes or with Py_DEBUG enabled. (cherry picked from commit 5466d4af5fe76ec0a5fbc8a05675287d9e8e9d14)
* bpo-29935: Fixed error messages in the index() method of tuple, list and ↵Serhiy Storchaka2017-03-301-0/+3
| | | | | | | deque (#887) (#907) (#909) when pass indices of wrong type. (cherry picked from commit d4edfc9abffca965e76ebc5957a92031a4d6c4d4) (cherry picked from commit bf4bb2e43030661e568d5d4b046e8b9351cc164c)
* bpo-27863: Fixed multiple crashes in ElementTree. (#765) (#904)Serhiy Storchaka2017-03-301-0/+3
| | | (cherry picked from commit 576def096ec7b64814e038f03290031f172886c3)
* bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-884)Xiang Zhang2017-03-291-0/+4
| | | | an exception raised at the very first of an iterable would cause pools behave abnormally (swallow the exception or hang)
* bpo-29643: Fix check for --enable-optimizations (GH-871)INADA Naoki2017-03-281-0/+5
| | | | | | The presence of the ``--enable-optimizations`` flag is indicated by the value of ``$enableval``, but the configure script was checking ``$withval``, resulting in the ``--enable-optimizations`` flag being effectively ignored. (cherry picked from commit 8cea5929f52801b0ce5928b46ef836e99a24321a)
* bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True) (#805) ↵Serhiy Storchaka2017-03-241-0/+3
| | | | | | | (#807) when the OS gives priority to errors such as EACCES over EEXIST. (cherry picked from commit af7b9ec5c855366feef4c67dc492d64b3baf84ca)
* bpo-29861: release references to multiprocessing Pool tasks (#743) (#801)Antoine Pitrou2017-03-241-0/+3
| | | | | | | | | | | | | | | | * bpo-29861: release references to multiprocessing Pool tasks (#743) * bpo-29861: release references to multiprocessing Pool tasks Release references to tasks, their arguments and their results as soon as they are finished, instead of keeping them alive until another task arrives. * Comments in test (cherry picked from commit 8988945cdc27ffa86ba8c624e095b51c459f5154) * Fix Misc/NEWS??
* faulthandler: Restore the old sigaltstack during teardown (GH-777) (GH-796)Christophe Zeitouny2017-03-241-0/+3
| | | (cherry picked from commit 20fbf8accd494fd15b0fc4c84928178c71ead4d1)
* bpo-28876: bool of large range raises OverflowError (#699) (#735)Serhiy Storchaka2017-03-201-0/+3
| | | | (cherry picked from commit e46fb8611867fa3b407a813f53137929b7cb4a10)
* bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. ↵Serhiy Storchaka2017-03-191-0/+2
| | | | | (#514) (#727) (cherry picked from commit a5af6e1af77ee0f9294c5776478a9c24d9fbab94)
* bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords ↵Michael Seifert2017-03-151-0/+3
| | | | are not strings (#649) (#672)
* bpo-29742: asyncio get_extra_info() throws exception (#525) (#646)Yury Selivanov2017-03-121-0/+3
|
* Fix wrapping into StopIteration of return values in generators and ↵Yury Selivanov2017-03-121-0/+2
| | | | coroutines (#644) (#648)
* [3.5] bpo-8256: Fixed possible failing or crashing input() (#642)Serhiy Storchaka2017-03-121-0/+3
| | | | | | | if attributes "encoding" or "errors" of sys.stdin or sys.stdout are not set or are not strings. (cherry picked from commit c2cf12857187aa147c268651f10acd6da2c9cb74)
* bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elementsorenmn2017-03-091-0/+3
|
* bpo-29537: Also cover 3.5.2 in NEWS entryNick Coghlan2017-03-081-1/+1
|
* [3.5] bpo-29537: Tolerate legacy invalid bytecode (#169)Nick Coghlan2017-03-081-0/+6
| | | | | | | | | | | | | | | | | | bpo-27286 fixed a problem where BUILD_MAP_UNPACK_WITH_CALL could be emitted with an incorrect oparg value, causing the eval loop to access the wrong stack entry when attempting to read the function name. The associated magic number change caused significant problems when attempting to upgrade to 3.5.3 for anyone that relies on pre-cached bytecode remaining valid across maintenance releases. This patch restores the ability to import legacy bytecode generated by 3.5.0, 3.5.1 or 3.5.2, and modifies the eval loop to avoid any harmful consequences from the potentially malformed legacy bytecode. Original import patch by Petr Viktorin, eval loop patch by Serhiy Storchaka, and tests and integration by Nick Coghlan.
* bpo-29615: backport to 3.5 (#479)Petr Motejlek2017-03-051-0/+4
|
* [3.5] bpo-27593: Get SCM build info from git instead of hg. (#446) (#454) (#455)Ned Deily2017-03-041-5/+0
| | | | | | | | | | | | * bpo-27593: Get SCM build info from git instead of hg. (#446) sys.version and the platform module python_build(), python_branch(), and python_revision() functions now use git information rather than hg when building from a repo. Based on original patches by Brett Cannon and Steve Dower. (cherry picked from commit 5c4b0d063aba0a68c325073f5f312a2c9f40d178) (cherry picked from commit 95c50e5aed9e5683676e18349dd94b11901a66b3)
* bpo-29572: Update Windows build to OpenSSL 1.0.2k (GH-443)Zachary Ware2017-03-031-0/+5
|
* bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405)Seth M. Larson2017-03-031-0/+3
|
* bpo-29703: asyncio: Fix creating new event loops in child processes. (#411)Yury Selivanov2017-03-031-0/+3
|
* bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ↵Martijn Pieters2017-02-271-0/+3
| | | | operations (#94)
* bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-329)Xiang Zhang2017-02-271-0/+2
|
* bpo-29110: Fix file object leak in `aifc.open` (GH-311)INADA Naoki2017-02-261-0/+3
| | | | (cherry picked from commit 03f68b6) (GH-162) (cherry picked from commit 5dc33ee) (GH-293)
* Fix unittest.mock._Call: don't ignore name (#307)Berker Peksag2017-02-261-0/+3
| | | | | | | | | | | | | Issue #28961: Fix unittest.mock._Call helper: don't ignore the name parameter anymore. Patch written by Jiajun Huang. (cherry picked from commits 84b6fb0eea29b3b28a1a11124526b01ec0c9d17a and dea1536fd3a8424d537794cd53715df0989cbbe1) Conflicts: Misc/NEWS
* [3.5] bpo-28929: Add to Misc/NEWS (GH-285)Mariatta2017-02-261-0/+2
| | | | mention bpo-28929 in the Documentation section of What's New in Python 3.5.4 release candidate 1
* bpo-25008: Deprecate smtpd and point to aiosmtpd (#274) (#279)Barry Warsaw2017-02-241-0/+3
|
* [3.5] bpo-29532: Altering a kwarg dictionary passed to functools.partial() ↵Serhiy Storchaka2017-02-221-0/+3
| | | | no longer affects a partial object after creation. (#222)
* bpo-29602: fix signed zero handling in complex constructor. (#203) (#205)Mark Dickinson2017-02-201-0/+4
| | | | | | | * Fix incorrect handling of signed zeros for complex-related classes. * Add Misc/NEWS entry. (cherry picked from commit 112ec38c15b388fe025ccb85369a584d218b1160)
* bpo-29347: Fix possibly dereferencing undefined pointers when creating ↵Xiang Zhang2017-02-201-0/+3
| | | | weakref objects (#128) (#188)
* [3.5] bpo-29571: Use correct locale encoding in test_re (#149) (#154)Nick Coghlan2017-02-191-0/+8
| | | | | | | ``local.getlocale(locale.LC_CTYPE)`` and ``locale.getpreferredencoding(False)`` may give different answers in some cases (such as the ``en_IN`` locale). ``re.LOCALE`` uses the latter, so update the test case to match.
* bpo-28556: Various updates to typing (#28) (#78)Mariatta2017-02-131-0/+7
| | | | | | | | | | | | | | | | | | various updates from upstream python/typing repo: - Added typing.Counter and typing.ChainMap generics - More flexible typing.NamedTuple - Improved generic ABC caching - More tests - Bugfixes - Other updates * Add Misc/NEWS entry * Add issue number Contributed by Ivan Levkivskyi @ilevkivskyi (cherry picked from commit b692dc8475a032740576129d0990ddc3edccab2b)
* bpo-29438: Fixed use-after-free in key sharing dict (#40)INADA Naoki2017-02-131-0/+2
|
* Fix #29519: weakref spewing exceptions during interp finalizationŁukasz Langa2017-02-101-0/+3
|
* Issue #26355: Specify canonical URLs in docs pagesNick Coghlan2017-02-091-0/+3
| | | | | | | Add canonical header link on each page to corresponding major version of the documentation. Patch by Matthias Bussonnier.
* Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-041-0/+2
|
* Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-041-0/+5
|
* Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-041-0/+2
|
* Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+3
| | | | the match object. Based on patch by WGH.
* Issue #29169: Fix NEWS entry.doko@ubuntu.com2017-02-011-1/+1
|
* - Issue #29169: Update zlib to 1.2.10.doko@ubuntu.com2017-01-311-0/+5
|
* Issue #29349: Fix Python 2 syntax in documentation build codeMartin Panter2017-01-291-0/+5
|