summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-40280: Detect missing threading on WASM platforms (GH-32352)Christian Heimes2022-04-0733-21/+103
* Remove micro-optimization that no longer shows a benefit. (GH-32397)Raymond Hettinger2022-04-071-21/+1
* pickle docs: Fix typos and improve wording (GH-24776)Géry Ogam2022-04-071-24/+23
* doc: Link to `string.capwords` from `str.title` (GH-20913)Eric Wieser2022-04-071-1/+5
* ssl docs: Fix typo (GH-32314)Frederick2022-04-071-1/+1
* pkgutil docs: Link sys constants, add backticks (GH-32356)Boris Verkhovskiy2022-04-071-4/+4
* bpo-35134: Remove the Include/code.h header file (GH-32385)Victor Stinner2022-04-0714-33/+17
* bpo-35134: Add Include/cpython/setobject.h header (GH-32384)Victor Stinner2022-04-065-67/+78
* bpo-47239: Fixes py.exe output when run in a virtual environment. (GH-32364)Steve Dower2022-04-063-104/+281
* bpo-35134: Add Include/cpython/complexobject.h header (GH-32383)Victor Stinner2022-04-065-42/+52
* bpo-46576: Speed up test_peg_generator by using a static library for shared s...Jeremy Kloth2022-04-063-44/+123
* Change parameter name from *x* for reals to *n* for integers. (GH-32377)Raymond Hettinger2022-04-063-8/+8
* bpo-47061: use `warnings._deprecated()` with asynchat, asyncore, and smtpd (G...Brett Cannon2022-04-063-18/+14
* Minor code nit: Move an unrelated statement out of a try clause in Sequence.i...Géry Ogam2022-04-061-2/+2
* bpo-26579: Add object.__getstate__(). (GH-2821)Serhiy Storchaka2022-04-0625-255/+389
* Remove python2 support in logging cookbook example. (GH-32362)Mathieu Dupuy2022-04-061-8/+1
* bpo-46721: Optimize set.issuperset() for non-set arguments (GH-31280)Serhiy Storchaka2022-04-062-16/+24
* bpo-43464: Optimize set.intersection() for non-set arguments (GH-31316)Serhiy Storchaka2022-04-062-0/+5
* bpo-47227: Suppress expression chaining for more RE parsing errors (GH-32333)Serhiy Storchaka2022-04-062-5/+6
* bpo-47211: Remove function re.template() and flag re.TEMPLATE (GH-32300)Serhiy Storchaka2022-04-068-18/+7
* Fix whitespace/indentation issues in test_sys (GH-32369)Ken Jin2022-04-061-2/+2
* stdtypes docs: fix typo (GH-32349)Ian2022-04-061-1/+1
* bpo-47235: Note where a typo is intentional in code. (GH-32348)Gregory P. Smith2022-04-061-4/+4
* bpo-47115: Document which parts of structs are in limited API/stable ABI (GH-...Petr Viktorin2022-04-067-893/+969
* bpo-40421: test_capi uses assertEqual(), not assertEquals() (GH-32361)Victor Stinner2022-04-061-1/+1
* bpo-40280: WASM defaults to no dynamic linking (GH-32360)Christian Heimes2022-04-062-2/+14
* Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-3205...Victor Stinner2022-04-067-42/+15
* [doc] Add missing backtick. (GH-32355)Julien Palard2022-04-061-1/+1
* bpo-47189: What's New in 3.11: Faster CPython (GH-32235)Ken Jin2022-04-063-7/+223
* bpo-47103: Copy pgort140.dll into output directory when building PGInstrument...Steve Dower2022-04-063-18/+18
* Fix generation of MD5 table at end of Windows release build (GH-32345)Steve Dower2022-04-061-4/+12
* Post 3.11.0a7Pablo Galindo2022-04-051-1/+1
* Python 3.11.0a7v3.11.0a7Pablo Galindo2022-04-05159-476/+1752
* bpo-47061: deprecate the `aifc` module (GH-32134)Brett Cannon2022-04-0510-6/+95
* bpo-47230: Silence compiler warnings on Windows from zlib 1.2.12 (GH-32337)Jeremy Kloth2022-04-051-2/+4
* bpo-4833: Add ZipFile.mkdir (GH-32160)Sam Ezeh2022-04-054-17/+101
* bpo-47009: Fix assert on big endian (GH-32332)Christian Heimes2022-04-051-1/+1
* bpo-46607: Add DeprecationWarning for LegacyInterpolation, deprecated in docs...Hugo van Kemenade2022-04-054-0/+26
* bpo-47088: Add typing.LiteralString (PEP 675) (GH-32064)Jelle Zijlstra2022-04-054-2/+116
* bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728)Erlend Egeberg Aasland2022-04-0510-1/+435
* bpo-47212: Improve error messages for un-parenthesized generator expressions ...Matthieu Dartiailh2022-04-057-8/+28
* bpo-45774: Harden SQLite detection (GH-30016)Erlend Egeberg Aasland2022-04-054-64/+638
* bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)Irit Katriel2022-04-0511-46/+56
* bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309)Irit Katriel2022-04-0510-97/+99
* bpo-47009: Let PRECALL_NO_KW_LIST_APPEND do its own POP_TOP (GH-32239)Dennis Sweeney2022-04-052-5/+8
* bpo-40280: Add limited Emscripten REPL (GH-32284)Christian Heimes2022-04-058-19/+428
* chore/docs: fix rst style and typo (GH-32331)谭九鼎2022-04-051-6/+6
* bpo-42238: [doc]: A make sucpicious false positive. (GH-32329)Julien Palard2022-04-051-0/+1
* bpo-46890: Fix setting of sys._base_executable with framework builds on macOS...Ronald Oussoren2022-04-055-2/+200
* bpo-45847: Adapt macOS installer build to use new tkinter configure vars (GH-...Ned Deily2022-04-051-3/+3