summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* [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
* [3.8] bpo-38218: Doc: Corrected syntax for return annotation (GH-16265) (GH-1...Miss Islington (bot)2019-09-191-1/+1
* bpo-38203: faulthandler.dump_traceback_later() is always available (GH-16260)Victor Stinner2019-09-181-2/+4
* [3.8] bpo-38070: Py_FatalError() logs runtime state (GH-16258)Victor Stinner2019-09-186-49/+104
* bpo-37904: Edition on python tutorial - section 4 (GH-16169) (GH-16234)Miss Islington (bot)2019-09-181-2/+2
* bpo-38191: Use positional-only parameters in TypedDict(). (GH-16240)Serhiy Storchaka2019-09-182-46/+7
* bpo-36546: No longer a need to make "data" positional only (GH-16252) (GH-16253)Miss Islington (bot)2019-09-181-1/+1
* bpo-38191: Accept arbitrary keyword names in NamedTuple() and TypedDict(). (G...Miss Islington (bot)2019-09-173-10/+135
* bpo-38013: make async_generator_athrow object tolerant to throwing exceptions...Miss Islington (bot)2019-09-173-5/+25
* bpo-37531: regrtest main process uses shorter timeout (GH-16220) (GH-16224)Miss Islington (bot)2019-09-171-6/+6
* bpo-37828: Fix default mock_name in unittest.mock.assert_called error (GH-16166)Miss Islington (bot)2019-09-173-1/+11
* Doc: Fix grammar/spelling in ssl.VERIFY_CRL_CHECK_LEAF docs (GH-16221)Miss Islington (bot)2019-09-171-2/+2
* bpo-38192: Fix remaining passing of "loop" in the protocol examples (GH-16202)Miss Islington (bot)2019-09-171-5/+6
* bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. ...Miss Islington (bot)2019-09-173-38/+50
* bpo-35379: When exiting IDLE, catch any AttributeError. (GH-16212)Miss Islington (bot)2019-09-173-4/+17
* bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155)Miss Islington (bot)2019-09-173-12/+29