summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
* bpo-29506: Clarify deep copy note in copy moduleNick Coghlan2017-04-091-0/+1
| | | | | | | The reference to administrative data was confusing to readers, so this simplifies the note to explain that deep copying may copy more then you intended, such as data that you expected to be shared between copies. (cherry picked from commit 19e04942562a980ad2519f6ff79c455a7472783b)
* bpo-29998: Pickling and copying ImportError now preserves name and path ↵Serhiy Storchaka2017-04-081-0/+3
| | | | | | (#1010) (#1042) attributes. (cherry picked from commit b785396ab451b0c9d6ae9ee5a9e56c810209a6cb)
* Miscellaneous minor fixes of Misc/NEWS formatting. (#1002) (#1003)Serhiy Storchaka2017-04-051-17/+17
| | | (cherry picked from commit a0157b5f11e621f2196af4e918b9f07688a6cd1c)
* Keep the c-api exception doc up-to-date (#966)cocoatomo2017-04-031-0/+1
| | | cherry-pick'ed from ec1f5df..e3d6db3
* bpo-29949: Fix set memory usage regression (GH-945)INADA Naoki2017-04-011-0/+2
| | | | | | Revert "Minor factoring: move redundant resize scaling logic into the resize function." This reverts commit 4897300276d870f99459c82b937f0ac22450f0b6. (cherry picked from commit e82cf8675bacd7a03de508ed11865fc2701dcef5)
* bpo-29953: Fix memory leaks in the replace() method of datetime and t… (#933)Serhiy Storchaka2017-03-311-0/+3
| | | | | objects when pass out of bound fold argument. (cherry picked from commit 314d6fca36a4eaa0541218431d14804fadec6488)
* bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#911)T. Wouters2017-03-301-0/+3
| | | | | | | | | * bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. 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) when pass indices of wrong type. (cherry picked from commit d4edfc9abffca965e76ebc5957a92031a4d6c4d4)
* bpo-27863: Fixed multiple crashes in ElementTree. (#765) (#903)Serhiy Storchaka2017-03-301-0/+3
| | | | (cherry picked from commit 576def096ec7b64814e038f03290031f172886c3)
* bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-882)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-869)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)… (#806)Serhiy Storchaka2017-03-241-0/+3
| | | | | | 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) (#800)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 (hopefully)
* faulthandler: Restore the old sigaltstack during teardown (GH-777) (GH-797)Christophe Zeitouny2017-03-242-0/+4
| | | (cherry picked from commit 20fbf8accd494fd15b0fc4c84928178c71ead4d1)
* Merge branch '3.6.1' of github.com:ned-deily/cpython into 3.6Ned Deily2017-03-221-10/+26
|\
| * Bump to 3.6.2rc1 development.Ned Deily2017-03-221-0/+50
| |
| * Update docs and patchlevel for 3.6.1 finalv3.6.1Ned Deily2017-03-211-19/+7
| |
| * [3.6] bpo-29723: Consistently configure sys.path[0] (#636)Nick Coghlan2017-03-211-0/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Directory and zipfile execution previously added the parent directory of the directory or zipfile as sys.path[0] and then subsequently overwrote it with the directory or zipfile itself. This caused problems in isolated mode, as it overwrote the "stdlib as a zip archive" entry in sys.path, as the parent directory was never added. The attempted fix to that issue in bpo-29319 created the opposite problem in *non*-isolated mode, by potentially leaving the parent directory on sys.path instead of overwriting it. This change fixes the root cause of the problem by removing the whole "add-and-overwrite" dance for sys.path[0], and instead simply never adds the parent directory to sys.path in the first place. (cherry picked from commit d2977a3ae2cc6802921b1e3b6e9d13fcfbda872d) (cherry picked from commit c60948464fb0ec116ea227f6bce8a4bb8fb75257)
* | Revert and fix Misc/NEWS after merge error in fca705d53397. (#755)Ned Deily2017-03-221-802/+3
| |
* | bpo-29859: Fix error messages from return codes for pthread_* calls (GH-753)INADA Naoki2017-03-211-0/+3
| | | | | | (cherry picked from commit d7fa6b259e00fca04dbf816bfcf4115fdda14bb7)
* | bpo-28876: bool of large range raises OverflowError (#699) (#734)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/+800
| | | | | | | | | | (#514) (#722) (cherry picked from commit a5af6e1af77ee0f9294c5776478a9c24d9fbab94)
* | Delete duplicate entry in Misc/NEWS (#673)Berker Peksag2017-03-151-2/+0
| | | | | | It has already been added in the build section.
* | bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords ↵Michael Seifert2017-03-152-0/+4
| | | | | | | | are not strings (#649) (#671)
* | bpo-28856: Let %b format for bytes support objects that follow the buffer ↵Xiang Zhang2017-03-141-0/+3
| | | | | | | | protocol (GH-664)
* | bpo-29742: asyncio get_extra_info() throws exception (#525) (#645)Yury Selivanov2017-03-121-0/+3
| |
* | Fix wrapping into StopIteration of return values in generators and ↵Yury Selivanov2017-03-121-0/+2
| | | | | | | | coroutines (#644) (#647)
* | [3.6] bpo-8256: Fixed possible failing or crashing input() (#641)Serhiy Storchaka2017-03-121-0/+3
| | | | | | | | if attributes "encoding" or "errors" of sys.stdin or sys.stdout are not set or are not strings.
* | [3.6] bpo-29723: Consistently configure sys.path[0] (#636)Nick Coghlan2017-03-121-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Directory and zipfile execution previously added the parent directory of the directory or zipfile as sys.path[0] and then subsequently overwrote it with the directory or zipfile itself. This caused problems in isolated mode, as it overwrote the "stdlib as a zip archive" entry in sys.path, as the parent directory was never added. The attempted fix to that issue in bpo-29319 created the opposite problem in *non*-isolated mode, by potentially leaving the parent directory on sys.path instead of overwriting it. This change fixes the root cause of the problem by removing the whole "add-and-overwrite" dance for sys.path[0], and instead simply never adds the parent directory to sys.path in the first place. (cherry picked from commit d2977a3ae2cc6802921b1e3b6e9d13fcfbda872d)
* | [3.6] bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elements ↵orenmn2017-03-091-0/+3
| | | | | | | | (#579)
* | [3.6] bpo-28231: The zipfile module now accepts path-like objects for ↵Serhiy Storchaka2017-03-081-0/+3
| | | | | | | | | | | | external paths. (#561) (cherry picked from commit 8606e9524a7a4065042f7f228dc57eb74f88e4d3)
* | Revert "bpo-29571: Use correct locale encoding in test_re (#149)" (#554) (#555)Benjamin Peterson2017-03-081-0/+1
| | | | | | This reverts commit ace5c0fdd9b962e6e886c29dbcea72c53f051dc4.
* | bpo-26915: Test identity first in index() and count() of ↵Xiang Zhang2017-03-081-0/+3
| | | | | | | | collections.abc.Sequence (GH-553)
* | [3.6] bpo-29714: Fix a regression that bytes format may fail when containing ↵Xiang Zhang2017-03-061-0/+3
| | | | | | | | | | | | zero bytes inside. (GH-504)
* | bpo-29615: backport to 3.6 (#478)Petr Motejlek2017-03-051-0/+4
| |
* | Bump to v3.6.1rc1+.Ned Deily2017-03-051-0/+12
|/
* Update docs and patchlevel for 3.6.1rc1.v3.6.1rc1Ned Deily2017-03-041-3/+3
|
* [3.6] bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS (#463)Ned Deily2017-03-041-0/+4
| | | | | | | Skip some tests of select.poll when running on macOS due to unresolved issues with the underlying system poll function on some macOS versions. (cherry picked from commit de04644627f82d9dc48b3423def7ff5b4aa1926a)
* [3.6] bpo-27593: Get SCM build info from git instead of hg. (#446) (#454)Ned Deily2017-03-041-0/+6
| | | | | | | | | | | * 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)
* bpo-29572: Update Windows build to OpenSSL 1.0.2k (GH-442)Zachary Ware2017-03-031-0/+2
|
* [3.6] bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) ↵Berker Peksag2017-03-031-0/+3
| | | | | | | | | | (#432) (cherry picked from commit 85b8d01c916b482dac937b93ede1e53b1db0361c) Conflicts: Lib/test/test_configparser.py
* Restore NEWS file after incorrect git automergeYury Selivanov2017-03-031-785/+3
|
* bpo-28963: Fix out of bound iteration in ↵Yury Selivanov2017-03-031-0/+3
| | | | asyncio.Future.remove_done_callback/C (#408)
* bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405)Seth M. Larson2017-03-031-0/+785
|
* bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406)Yury Selivanov2017-03-031-0/+3
|
* bpo-28893: Set __cause__ for errors in async iteration protocol (#407)Yury Selivanov2017-03-031-0/+3
|
* bpo-29703: asyncio: Fix creating new event loops in child processes. (#404) ↵Yury Selivanov2017-03-031-0/+3
| | | | (#410)
* bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#402)Brian Coleman2017-03-021-0/+3
| | | | | | | | allocated. On PyMem_Realloc failure, _PyCode_SetExtra should free co_extra if co_extra->ce_extras could not be allocated. On PyMem_Realloc success, _PyCode_SetExtra should set all unused slots in co_extra->ce_extras to NULL.
* bpo-29684: Fix minor regression of PyEval_CallObjectWithKeywords. (GH-378)INADA Naoki2017-03-011-0/+4
|
* bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ↵Martijn Pieters2017-02-271-0/+3
| | | | operations (#95)