summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-37800: Clean up importlib documentation for some module attributes (GH-10...Géry Ogam2021-11-161-63/+77
* bpo-45820: Fix a segfault when the parser fails without reading any input (GH...Pablo Galindo Salgado2021-11-162-0/+10
* bpo-45126: Harden `sqlite3` connection initialisation (GH-28227)Erlend Egeberg Aasland2021-11-163-62/+110
* bpo-45636: Simplify BINARY_OP (GH-29565)Brandt Bucher2021-11-164-83/+51
* bpo-45429: Support CREATE_WAITABLE_TIMER_HIGH_RESOLUTION if possible (GH-29203)Dong-hee Na2021-11-163-9/+37
* bpo-45292: Use raw strings for regex in tests (GH-29545)Irit Katriel2021-11-161-3/+3
* bpo-45753: Make recursion checks more efficient. (GH-29524)Mark Shannon2021-11-1610-43/+50
* bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)Victor Stinner2021-11-1528-3228/+34
* bpo-43225: [DOC] Add missing value returned by methods on cookiejar (GH-24522)Emmanuel Arias2021-11-151-3/+3
* bpo-25381: Update explanation of exceptions in C. (GH-26838)Terry Jan Reedy2021-11-152-7/+7
* Save a reference for ensure_future and create_task (GH-29163)Joannah Nanjekye2021-11-152-0/+8
* bpo-45677: Reword first section of `sqlite3` docs (#29326)Erlend Egeberg Aasland2021-11-152-22/+24
* bpo-45636: Remove the old %-formatting fast-path (GH-29532)Brandt Bucher2021-11-153-12/+10
* bpo-45512: Raise exception if sqlite3.Connection.__init__ is called with bad ...Erlend Egeberg Aasland2021-11-152-5/+19
* bpo-45512: Simplify isolation_level handling in `sqlite3` (GH-29053)Erlend Egeberg Aasland2021-11-153-63/+84
* bpo-45573: Use Makefile's dependencies in setup.py (GH-29559)Christian Heimes2021-11-142-61/+28
* bpo-45752: Remove "array" from list of things that cannot be copied in `copy`...Alex Waygood2021-11-141-2/+2
* bpo-45752: Fix no-support examples in 'copy' docs (GH-29548)M. Mostafa Farzan2021-11-141-1/+1
* bpo-45800: Move pyexpat build setup into configure (GH-29547)Christian Heimes2021-11-146-58/+177
* bpo-45738: Fix computation of error location for invalid continuation (GH-29550)Pablo Galindo Salgado2021-11-144-12/+14
* bpo-45799: [Doc] improve confusing sentence in __main__.rst (GH-29546)Jack DeVries2021-11-131-2/+2
* bpo-45798: Move _decimal build setup into configure (GH-29541)Christian Heimes2021-11-137-112/+313
* bpo-45772: socket.socket should be a class instead of a function (GH-23960)Hong Xu2021-11-132-1/+2
* bpo-45711: assert that the type of exc_info is redundant (GH-29518)Irit Katriel2021-11-121-0/+25
* bpo-45745: Remove regrtest --findleaks options (GH-29514)Victor Stinner2021-11-125-17/+7
* bpo-45711: Re-bump the magic number and update doc (GH-29528)Brandt Bucher2021-11-123-3/+11
* bpo-45792: Fix contextvar.Token's intersphinx FQN (GH-29533)Hynek Schlawack2021-11-121-1/+1
* bpo-45235: Revert an argparse bugfix that caused a regression (GH-29525)Raymond Hettinger2021-11-123-13/+9
* bpo-45773: Stop "optimizing" certain jump patterns (GH-29505)Brandt Bucher2021-11-113-76/+49
* bpo-45636: Merge all numeric operators (GH-29482)Brandt Bucher2021-11-1116-1079/+611
* bpo-45696: Deep-freeze selected modules (GH-29118)Guido van Rossum2021-11-1116-56/+808
* bpo-45723: Add --with-pkg-config to configure (GH-29517)Christian Heimes2021-11-104-135/+210
* bpo-45747: Detect gdbm/dbm dependencies in configure (GH-29467)Christian Heimes2021-11-108-262/+497
* bpo-45754: Use correct SQLite limit when checking statement length (GH-29489)Erlend Egeberg Aasland2021-11-105-11/+14
* bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)Irit Katriel2021-11-104-100/+93
* bpo-45711: Use _PyErr_ClearExcState instead of setting only exc_value to NULL...Irit Katriel2021-11-101-4/+9
* bpo-45723: Improve and simplify more configure.ac checks (GH-29485)Erlend Egeberg Aasland2021-11-102-222/+141
* bpo-45637: Fix cframe-based fallback in the gdb helpers (GH-29515)Pablo Galindo Salgado2021-11-101-5/+5
* [bpo-45765] Fix distribution discovery on empty path. (#29487)Jason R. Coombs2021-11-092-1/+2
* bpo-45701: Improve documentation for *typed* parameter (GH-29498)Raymond Hettinger2021-11-091-4/+10
* bpo-45723: Remove dead code for obsolete `--with-dyld` option (GH-29500)Erlend Egeberg Aasland2021-11-092-8/+0
* bpo-45220: Ensure RT_MANIFEST is defined when compiling Windows resource file...Steve Dower2021-11-096-0/+35
* bpo-45757: Fix bug where dis produced an incorrect oparg on EXTENDED_ARG befo...Irit Katriel2021-11-093-0/+23
* bpo-45732: Update bundled Tcl/Tk on Windows to 8.6.12 (GH-29477)Steve Dower2021-11-093-5/+6
* Factor-out constant calculation. (GH-29491)Raymond Hettinger2021-11-091-2/+4
* bpo-45763: Detect compression build deps in configure (GH-29483)Christian Heimes2021-11-096-11/+230
* bpo-45723: Remove obsolete AC_EXEEXT from configure.ac (GH-29486)Erlend Egeberg Aasland2021-11-092-2/+0
* bpo-45764: improve error message when missing '(' after 'def' (GH-29484)Carl Friedrich Bolz-Tereick2021-11-094-14/+34
* bpo-45637: Remove broken fallback in gdb helpers to obtain frame variable (GH...Pablo Galindo Salgado2021-11-092-11/+9
* bpo-45743: Remove workaround for zlib CVE from 2002 (GH-29457)Christian Heimes2021-11-091-40/+11