summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-31653: Don't release the GIL if we can acquire a multiprocessing semaphor...Antoine Pitrou2017-10-221-0/+2
* bpo-28326: Fix multiprocessing.Process when stdout and/or stderr is closed or...Antoine Pitrou2017-10-221-0/+1
* bpo-31781: Prevent crashes when calling methods of an uninitialized zipimport...Oren Milman2017-10-201-0/+2
* bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)Serhiy Storchaka2017-10-201-0/+2
* bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051)Antoine Pitrou2017-10-191-0/+1
* bpo-31632: fix set_protocol() in _SSLProtocolTransport (#3817) (#3817)jlacoline2017-10-192-0/+3
* bpo-31457: Don't omit inner ``process()`` calls with nested LogAdapters (#4044)Łukasz Langa2017-10-191-0/+2
* Add NEWS entry for opcode tracing change. (GH-4045)George King2017-10-191-0/+7
* bpo-31457: Make the `LoggerAdapter.manager` property settable (#4042)Łukasz Langa2017-10-191-0/+1
* bpo-31806: Use _PyTime_ROUND_TIMEOUT for the timeout argument parsing in more...Pablo Galindo2017-10-181-0/+4
* bpo-13802: Use non-Latin characters in IDLE's Font settings sample. (#3960)Terry Jan Reedy2017-10-171-0/+15
* time.clock() now emits a DeprecationWarning (GH-4020)Victor Stinner2017-10-171-0/+2
* bpo-28603: Fix formatting tracebacks for unhashable exceptions (#4014)Zane Bitter2017-10-174-0/+9
* bpo-31334: Fix timeout in select.poll.poll() (GH-3277)Riccardo Coccioli2017-10-172-0/+4
* bpo-31786: Make functions in the select module blocking when timeout is a sma...Pablo Galindo2017-10-171-0/+3
* bpo-30541: Add new method to seal mocks (GH61923)Mario Corchero2017-10-171-0/+2
* Update NEWS and topics for 3.7.0a2Ned Deily2017-10-1769-140/+683
* bpo-31558: Update NEWS and ACKS (#4013)Łukasz Langa2017-10-162-0/+6
* bpo-28647: Update -u documentation after bpo-30404 (GH-3961)Berker Peksag2017-10-131-7/+2
* bpo-31672: Fix string.Template accidentally matched non-ASCII identifiers (GH...INADA Naoki2017-10-131-0/+2
* bpo-30058: Fixed buffer overflow in select.kqueue.control(). (#1095)Serhiy Storchaka2017-10-121-0/+1
* bpo-31537: Update readline documentation example. (GH-3925)Brad Smith2017-10-101-0/+2
* bpo-31728: Prevent crashes in _elementtree due to unsafe cleanup of Element.t...Oren Milman2017-10-101-0/+2
* bpo-31701: faulthandler: ignore MSC and COM Windows exception (#3929)Victor Stinner2017-10-091-0/+1
* bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() al...Oren Milman2017-10-081-0/+2
* bpo-31642: Restore blocking "from" import by setting None in sys.modules. (#3...Serhiy Storchaka2017-10-081-0/+2
* bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)Masayuki Yamamoto2017-10-061-0/+4
* bpo-31708: Allow async generator expressions in synchronous functions (#3905)Yury Selivanov2017-10-061-0/+1
* bpo-31709: Drop support for asynchronous __aiter__. (#3903)Yury Selivanov2017-10-061-0/+1
* closes bpo-31696: don't mention GCC in sys.version when building with clang (...Benjamin Peterson2017-10-061-0/+2
* bpo-30406: Make async and await proper keywords (#1669)Jelle Zijlstra2017-10-061-0/+1
* PEP 553 built-in breakpoint() function (bpo-31353) (#3355)Barry Warsaw2017-10-051-0/+5
* bpo-31556: asyncio.wait_for can cancel futures faster with timeout <= 0 (#3703)Victor K2017-10-051-0/+1
* bpo-31671: re: Convert RegexFlag to int before compile (GH-3862)INADA Naoki2017-10-051-0/+2
* closes bpo-27494: Fix 2to3 handling of trailing comma after a generator expre...Jakub Stasiak2017-10-051-0/+2
* closes bpo-31596: Add an interface for pthread_getcpuclockid(3) (#3756)pdox2017-10-051-0/+1
* bpo-30404: The -u option now makes the stdout and stderr streams totally unbu...Serhiy Storchaka2017-10-041-0/+2
* bpo-30397: Add re.Pattern and re.Match. (#1646)Serhiy Storchaka2017-10-041-0/+3
* bpo-31675: Fix memory leaks in Tkinter's methods splitlist() and split() (#3866)Serhiy Storchaka2017-10-031-0/+2
* bpo-31673: Fixed typo in the name of Tkinter's method adderrorinfo(). (#3864)Serhiy Storchaka2017-10-031-0/+1
* bpo-31619: Fixed a ValueError when convert a string with large number of unde...Serhiy Storchaka2017-10-031-0/+2
* bpo-31415: Add `-X importtime` option (GH-3490)INADA Naoki2017-10-031-0/+2
* bpo-31540: Allow passing multiprocessing context to ProcessPoolExecutor (#3682)Thomas Moreau2017-10-031-0/+4
* bpo-31516: current_thread() should not return a dummy thread at shutdown (#3673)Antoine Pitrou2017-10-021-0/+1
* bpo-31336: Speed up type creation. (#3279)scoder2017-10-011-0/+2
* bpo-31460: Simplify the API of IDLE's Module Browser. (#3842)Terry Jan Reedy2017-09-301-0/+6
* bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (#3839)Terry Jan Reedy2017-09-301-0/+1
* bpo-31592: Fix an assertion failure in Python parser in case of a bad unicode...Oren Milman2017-09-301-0/+2
* bpo-31648: Improve ElementPath (#3835)scoder2017-09-301-0/+6
* bpo-30806 netrc.__repr__() is broken for writing to file (GH-2491)James Sexton2017-09-301-0/+1