summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-45743: -Wl,-search_paths_first is no longer needed (GH-29464)Christian Heimes2021-11-094-80/+5
* Add third-party Windows build definitions (GH-29476)Steve Dower2021-11-084-0/+287
* bpo-45723: Prepare support for autoconf 2.71 (GH-29441)Christian Heimes2021-11-088-536/+365
* bpo-45723: Add macro for disabling/enabling CC warnings (GH-29466)Erlend Egeberg Aasland2021-11-082-315/+179
* Closes bpo-45712: Add missing word in control flow tutorial (GH-29460)1809092021-11-081-1/+1
* bpo-40170: Update What's New in Python 3.9 (GH-29470)Victor Stinner2021-11-081-4/+0
* bpo-45743: Move __APPLE_USE_RFC_3542 into socketmodule.c (GH-29456)Christian Heimes2021-11-082-7/+3
* remove the repeat 'the' (#29455)1809092021-11-081-1/+1
* bpo-45723: Add helper macros and more caching to configure.ac (GH-29429)Christian Heimes2021-11-084-1006/+1307
* bpo-45741: docs: fix plural (GH-29461)Rafael Fontenelle2021-11-081-1/+1
* General cleanup of test_pydoc (GH-29459)Zachary Ware2021-11-071-43/+43
* bpo-45723: Detect missing pkg-config (GH-29442)Christian Heimes2021-11-073-2/+17
* bpo-45392: Update the docstring of the 'type' built-in (GH-29439)Mark Dickinson2021-11-062-3/+3
* bpo-27313: Use non-deprecated methods for tracing (GH-29425)Serhiy Storchaka2021-11-061-5/+5
* bpo-39452: [doc] Change "must" to "can" on relative import style in `__main__...Andre Delfino2021-11-061-1/+1
* [doc] bpo-45680: Improve glossary entry for generic types (GH-29388)Alex Waygood2021-11-061-4/+5
* [doc] minor fixes to expressions.rst (GH-29444)Ethan Furman2021-11-061-3/+3
* bpo-45740: [Enum] add versionadded markers to docs (GH-29443)Ethan Furman2021-11-062-7/+7
* bpo-45644: Make json.tool read infile before writing to outfile (GH-29273)Chris Wesseling2021-11-063-7/+26
* bpo-45731: Handle --enable-loadable-sqlite-extensions in configure (GH-29434)Christian Heimes2021-11-067-13/+30
* bpo-45720: Drop references to shlwapi.dll on Windows (GH-29417)Steve Dower2021-11-054-4/+7
* Post 3.11.0a2Pablo Galindo2021-11-051-1/+1
* Merge tag 'v3.11.0a2'Pablo Galindo2021-11-05128-372/+1396
|\
| * Python 3.11.0a2v3.11.0a2Pablo Galindo2021-11-05130-415/+1419
* | bpo-43158: Regenerate configure again (GH-29433)Christian Heimes2021-11-052-43/+23
* | bpo-45679: add `tuple` tests with `lru_cache` to `test_functools` (GH-29339)Nikita Sobolev2021-11-052-0/+29
|/
* bpo-45243: Use connection limits to simplify `sqlite3` tests (GH-29356)Erlend Egeberg Aasland2021-11-053-21/+54
* bpo-45762: Improve docs for ``@singledispatch``/``@singledispatchmethod`` (GH...Alex Waygood2021-11-052-22/+28
* bpo-45716: Improve the error message when using True/False/None as keywords i...Pablo Galindo Salgado2021-11-054-691/+807