summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-38317: Fix PyConfig.warnoptions priority (GH-16478)Miss Islington (bot)2019-09-2910-51/+185
* bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe ...Miss Islington (bot)2019-09-293-0/+39
* bpo-38115: Deal with invalid bytecode offsets in lnotab (GH-16079) (GH-16464)Gregory P. Smith2019-09-284-2/+85
* bpo-38216, bpo-36274: Allow subclasses to separately override validation and ...Miss Islington (bot)2019-09-283-9/+51
* bpo-38304: Add PyConfig.struct_size (GH-16451) (GH-16453)Victor Stinner2019-09-2813-60/+350
* bpo-38301: In Solaris family, we must be sure to use '-D_REENTRANT' (GH-16446...Miss Islington (bot)2019-09-283-0/+8
* [3.8] bpo-38136: Updates await_count and call_count to be different things (G...Lisa Roach2019-09-275-43/+208
* bpo-38243, xmlrpc.server: Escape the server_title (GH-16373)Miss Islington (bot)2019-09-273-1/+21
* bpo-38206: Clarify tp_dealloc requirements for heap allocated types. (GH-16248)Miss Islington (bot)2019-09-272-5/+22
* cleanup ababstractproperty in typing.py (GH-16432)Miss Islington (bot)2019-09-271-8/+15
* [3.8] bpo-38275: Skip ssl tests for disabled versions (GH-16386) (GH-16425)Christian Heimes2019-09-262-51/+149
* bpo-38239: Fix test_gdb for Link Time Optimization (LTO) (GH-16422)Miss Islington (bot)2019-09-262-2/+10
* [3.8] bpo-38234: Backport init path config changes from master (GH-16423)Victor Stinner2019-09-2613-208/+795
* bpo-38130: Fix error in explaining when an exception is re-raised (GH-16016) ...Miss Islington (bot)2019-09-261-1/+1
* Doc: Use the `with` statement in the first example of the ftplib doc. (GH-162...Miss Islington (bot)2019-09-261-1/+2
* [3.8] closes bpo-38174: Update vendored expat library to 2.2.8. (GH-16409)Benjamin Peterson2019-09-2624-4843/+3974
* [3.8] bpo-22273: Changed conditions for ctypes array-in-struct handling. (GH-...Vinay Sajip2019-09-251-7/+4
* bpo-38271: encrypt private key test files with AES256 (GH-16385)Miss Islington (bot)2019-09-254-86/+91
* bpo-38005: Remove support of string argument in InterpreterID(). (GH-16227)Miss Islington (bot)2019-09-252-59/+37
* [3.8] bpo-38270: Check for hash digest algorithms and avoid MD5 (GH-16382) (G...Miss Islington (bot)2019-09-258-45/+119
* bpo-38255: super() can search attributes as well as methods (GH-16368) (GH-16...Miss Islington (bot)2019-09-251-0/+4
* bpo-36210: correct logic in setup.py for optional extensions for AIX (GH-1220...Michael Felt2019-09-252-5/+23
* bpo-37064: Skip test_tools.test_pathfix if installed (GH-15705) (GH-16389)Victor Stinner2019-09-251-1/+5
* bpo-37064: Add -k and -a options to pathfix.py tool (GH-16387)Victor Stinner2019-09-253-5/+164
* bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) (G...Miss Islington (bot)2019-09-254-8/+14
* bpo-38260: Add Docs on asyncio.run (GH-16337)Miss Islington (bot)2019-09-252-0/+16
* bpo-22273: Update ctypes to correctly handle arrays in small structur… (GH-...Miss Islington (bot)2019-09-253-0/+187
* [3.8] bpo-36871: Handle spec errors in assert_has_calls (GH-16005) (GH-16364)Miss Islington (bot)2019-09-254-5/+78
* bpo-37123: multiprocessing test_mymanager() accepts SIGTERM (GH-16349)Miss Islington (bot)2019-09-242-5/+10
* bpo-38212: Increase MP test_queue_feeder_donot_stop_onexc() timeout (GH-16348)Miss Islington (bot)2019-09-242-2/+3
* closes bpo-16637: libpython: construct integer object directly from gdbvalue ...Miss Islington (bot)2019-09-241-1/+1
* closes bpo-38253: Fix typo of Py_SET_ERANGE_IF_OVERFLOW in pyport.h. (GH-16230)Miss Islington (bot)2019-09-241-1/+1
* bpo-38234: read_pth_file() now returns PyStatus (GH-16338)Miss Islington (bot)2019-09-232-155/+243
* bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335) (GH-16336)Victor Stinner2019-09-234-254/+316
* bpo-38236: Dump path config at first import error (GH-16300) (GH-16332)Victor Stinner2019-09-238-17/+129
* Updated incorrect level-setting code to use setLevel(). (GH-16325) (GH-16327)Miss Islington (bot)2019-09-222-6/+7
* bpo-38237: Shorter docstring (GH-16322) (GH-16323)Miss Islington (bot)2019-09-212-4/+4
* bpo-38237: Let pow() support keyword arguments (GH-16302) (GH-16320)Miss Islington (bot)2019-09-216-49/+73
* [3.8] bpo-38093: Correctly returns AsyncMock for async subclasses. (GH-15947)...Lisa Roach2019-09-215-77/+180
* Doc: Fix spelling errors of 'initial' in enum.py (GH-16314)Miss Islington (bot)2019-09-211-1/+1
* Doc: Remove provisional note for asyncio.run() (GH-16310) (GH-16311)Miss Islington (bot)2019-09-211-2/+0
* Minor code and comment cleanup (GH-16315) (GH-16316)Miss Islington (bot)2019-09-211-1/+3
* [3.8] bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298) ...Victor Stinner2019-09-217-104/+110
* bpo-38205: Py_UNREACHABLE() calls Py_FatalError() (GH-16290) (GH-16306)Victor Stinner2019-09-202-1/+3
* bpo-33694: Remove test_asyncio ProactorDatagramTransportTests (GH-16288)Miss Islington (bot)2019-09-201-253/+0
* bpo-37937: Mention frame.f_trace in sys.settrace docs (GH-15439)Miss Islington (bot)2019-09-202-0/+12
* bpo-37353: Updated parser note about source code compatibility(GH-14277)Miss Islington (bot)2019-09-201-1/+2
* bpo-37531: sync regrtest with master branch (GH-16285)Victor Stinner2019-09-192-17/+26
* Fix _PyTraceMalloc_Fini() definition (GH-16259) (GH-16278)Miss Islington (bot)2019-09-191-1/+1
* Doc: Clarify dict equality irrespective of ordering. (GH-16266)Miss Islington (bot)2019-09-191-1/+1