summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-45020: Drop the frozen .h files from the repo. (gh-28392)Eric Snow2021-09-1617-14455/+85
* bpo-45225: use map function instead of genexpr in capwords (GH-28342)speedrun-program2021-09-162-1/+2
* bpo-45220: Avoid automatically selecting the Windows 11 SDK preview when buil...Steve Dower2021-09-162-0/+6
* bpo-45212: Fix dangling threads in skipped tests in test_socket (GH-28361)Serhiy Storchaka2021-09-161-11/+8
* docs: correct references to __isub__ etc (GH-28297)David Hewitt2021-09-161-132/+132
* bpo-45020: Revert "Drop the frozen .h files from the repo." (gh-28380)Eric Snow2021-09-1615-69/+14417
* bpo-45155 : Default arguments for int.to_bytes(length=1, byteorder=sys.byteor...Barry Warsaw2021-09-166-65/+127
* bpo-45020: Drop the frozen .h files from the repo. (gh-28375)Eric Snow2021-09-1616-14437/+71
* bpo-39710: Remove Python 2-specific sentence from calendar documentation (GH-...Hubert Badocha2021-09-152-10/+3
* bpo-45019: Clean up the frozen __hello__ module. (gh-28374)Eric Snow2021-09-1512-50/+76
* Fix typo in Lib/sqlite3/test/test_types.py (GH-28226)Konstantin Popov2021-09-151-1/+1
* bpo-45019: Silence a warning in test_ctypes. (gh-28362)Eric Snow2021-09-151-2/+2
* bpo-45089: Improve sqlite3 trace callback docs (GH-28238)Erlend Egeberg Aasland2021-09-151-5/+13
* bpo-5846: Deprecate obsolete methods in `unittest` (GH-28299)Erlend Egeberg Aasland2021-09-154-4/+69
* bpo-45193: News for IDLE PR_28343 (GH-28348)Terry Jan Reedy2021-09-151-0/+1
* bpo-45167: Fix deepcopying of GenericAlias (GH-28324)Serhiy Storchaka2021-09-153-5/+28
* bpo-45207: Make test_gdb.test_pycfunction() quiet (GH-28355)Victor Stinner2021-09-151-3/+11
* bpo-45205: Make test_compileall quiet (GH-28356)Victor Stinner2021-09-151-2/+4
* bpo-45208: Make test_pdb.test_checkline_is_not_executable() quiet (GH-28354)Victor Stinner2021-09-151-13/+14
* bpo-45204: Reduce verbosity of test_peg_generator (GH-28360)Pablo Galindo Salgado2021-09-151-10/+10
* bpo-45188: Windows now regenerates frozen modules at the start of build inste...Steve Dower2021-09-157-68/+278
* bpo-45185: enables `TestEnumerations` in `test_ssl` (GH-28330)Nikita Sobolev2021-09-152-8/+11
* bpo-45020: Freeze some of the modules imported during startup. (gh-28335)Eric Snow2021-09-1519-30/+6879
* bpo-44786: Fix a warning in RE in c-analyzer (GH-28351)Serhiy Storchaka2021-09-152-2/+3
* bpo-45203: Cleanup stats gathering code for LOAD_METHOD (GH-28352)Mark Shannon2021-09-151-41/+39
* bpo-21302: Add _PyTime_AsNanoseconds() (GH-28350)Victor Stinner2021-09-154-166/+228
* bpo-45152: refactor the dis module to make handling of hasconst opcodes more ...Irit Katriel2021-09-151-19/+35
* bpo-45193: Restore IDLE completion boxes on Ubuntu (GH-28343)Terry Jan Reedy2021-09-151-1/+1
* bpo-45020: Don't test IDLE with frozen module. (GH-28344)Terry Jan Reedy2021-09-151-2/+2
* bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...Eric Snow2021-09-1416-117/+359
* bpo-4356: Mention the new key arguments for the bisect module APIs in the 3.1...Pablo Galindo Salgado2021-09-141-0/+6
* bpo-45196: prevent unittest crash on address sanitizer builds (GH-28331)junyixie2021-09-142-3/+20
* closes bpo-45190: Update Unicode data to version 14.0.0. (GH-28336)Benjamin Peterson2021-09-1411-31934/+33027
* bpo-45195: Fix test_readline.test_nonascii() (GH-28329)Victor Stinner2021-09-142-1/+6
* bpo-45156: Fixes inifite loop on unittest.mock.seal() (GH-28300)Nikita Sobolev2021-09-143-6/+70
* bpo-45168: change dis output to omit missing values rather than replacing the...Irit Katriel2021-09-144-19/+28
* bpo-45152: Add HAS_CONST macro and get_const_value() function and useā€¦ (#28...Irit Katriel2021-09-143-7/+53
* bpo-42135 Correct version slated for importlib.find_loader removal (GH-28312)Hugo van Kemenade2021-09-132-1/+4
* bpo-45019: Do some cleanup related to frozen modules. (gh-28319)Eric Snow2021-09-1312-137/+339
* bpo-45173 Remove configparser deprecations (GH-28292)Hugo van Kemenade2021-09-135-94/+18
* bpo-21302: Update time.sleep() doc for clock_nanosleep() (GH-28311)Victor Stinner2021-09-132-19/+32
* bpo-21302: Add clock_nanosleep() implementation for time.sleep() (GH-28111)Livius2021-09-135-5/+100
* bpo-45181: Simplify loading sqlite3 tests (GH-28304)Serhiy Storchaka2021-09-1310-146/+14
* bpo-45182: Fix incorrect use of requires_zlib in test_bdist_rpm (GH-28305)Serhiy Storchaka2021-09-131-2/+2
* bpo-5846: Do not use obsolete unittest functions. (GH-28303)Serhiy Storchaka2021-09-1349-93/+80
* bpo-45126: Fix ref. leak in `sqlite3.Connection.__init__` (GH-28231)Erlend Egeberg Aasland2021-09-122-13/+49
* bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe...Serhiy Storchaka2021-09-1226-67/+285
* bpo-44987: Fix typo whatsnew 3.11 (GH-28293)Dong-hee Na2021-09-111-1/+1
* bpo-44987: Speed up unicode normalization of ASCII strings (GH-28283)Dong-hee Na2021-09-113-0/+9
* bpo-35474: Fix mimetypes.guess_all_extensions() potentially mutating list (GH...Serhiy Storchaka2021-09-113-8/+20