summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* gh-125196: Use PyUnicodeWriter in symtable.c (#125199)Victor Stinner2024-10-091-19/+16
* gh-115999: Refactor `LOAD_GLOBAL` specializations to avoid reloading {globals...mpage2024-10-099-155/+372
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)Victor Stinner2024-10-0922-35/+35
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_BYTES) (#125195)Victor Stinner2024-10-096-9/+9
* gh-111178: Fix function signatures in codeobject.c (#125180)Victor Stinner2024-10-091-32/+48
* GH-120024: Tidy up pycore_stackref.h, splitting into GIL and free-threading s...Mark Shannon2024-10-091-101/+65
* gh-111178: Fix function signatures in cellobject.c (#125182)Victor Stinner2024-10-091-16/+23
* gh-101100: Fix Sphinx warnings in `library/unittest.mock.rst` (#124106)Hugo van Kemenade2024-10-091-30/+30
* gh-125168: Fix typo in `__future__.rst` (#125183)JamesMcCarthy212024-10-091-1/+1
* gh-125039: Make `this_instr`/`prev_instr` const in cases generator (GH-125071)Tomas R.2024-10-094-78/+79
* gh-101100: Consolidate documentation on `ModuleType` attributes (#124709)Alex Waygood2024-10-0923-344/+379
* Fix importlib.resources issue reference in 3.13 What's New (#125175)Alyssa Coghlan2024-10-091-2/+2
* gh-107562: Update test certificates to expire far in the future (GH-125104)Petr Viktorin2024-10-0920-1157/+1163
* gh-107562: make_ssl_certs.py: produce test certificates that expire far in th...Alexander Kanavin2024-10-093-2/+6
* gh-124969: Fix locale.nl_langinfo(locale.ALT_DIGITS) (GH-124974)Serhiy Storchaka2024-10-094-6/+74
* gh-125150: Skip test_fma_zero_result on NetBSD due to IEE 754-2008 implementa...Furkan Onder2024-10-091-1/+1
* gh-124502: Remove _PyUnicode_EQ() function (#125114)Victor Stinner2024-10-094-39/+10
* docs: in venv table use executable name (GH-124315)musvaage2024-10-091-1/+1
* gh-101552: Allow pydoc to display signatures in source format (#124669)Jelle Zijlstra2024-10-098-27/+126
* gh-124612: Use ghcr.io/python/autoconf instead of public image (#124657)Donghee Na2024-10-091-4/+2
* gh-123849: Fix test_sqlite3.test_table_dump when foreign keys are enabled by ...Mariusz Felisiak2024-10-081-1/+2
* GH-124478: Cleanup argparse documentation (#124877)Savannah Ostrowski2024-10-082-435/+196
* gh-116110: remove extra processing for the __signature__ attribute (GH-116234)Sergey B Kirpichev2024-10-084-48/+19
* Misc improvements to the itertools docs (gh-125147)Raymond Hettinger2024-10-081-39/+97
* gh-124832: Add a note to indicate that `datetime.now` may return the same ins...spacemanspiff20072024-10-081-0/+4
* gh-125063: Emit slices as constants in the bytecode compiler (#125064)Michael Droettboom2024-10-086-23/+122
* gh-125084: Resolve paths in generator common code (GH-125085)Cody Maloney2024-10-081-3/+3
* gh-117721: use PyMutex in `_thread.lock` (#125110)Kumar Aditya2024-10-081-45/+11
* gh-124502: Optimize unicode_eq() (#125105)Victor Stinner2024-10-081-7/+12
* gh-115999: Stop the world when invalidating function versions (#124997)mpage2024-10-084-38/+72
* gh-125096: Don't import _pyrepl in site if PYTHON_BASIC_REPL (#125097)Victor Stinner2024-10-083-7/+36
* gh-112433 add versionadded for `ctypes.Structure._align_` (#125087)monkeyman1922024-10-082-0/+6
* Doc: Improve description of ``GET_LEN`` opcode (#114583)Kirill Podoprigora2024-10-081-1/+2
* gh-121404: typo fix in compile.c: MATADATA -> METADATA (#125101)Mikhail Efimov2024-10-081-5/+5
* gh-75898: make use of thread more explicit in the "Socket Programming HOWTO" ...Jan Kaliszewski2024-10-081-2/+2
* gh-90102: Fix pyio _isatty_open_only() (#125089)Cody Maloney2024-10-081-1/+1
* gh-123961: Convert _curses to a multi-phase init module (PEP-489) (#124965)Bénédikt Tran2024-10-083-82/+116
* gh-123378: fix a crash in `UnicodeError.__str__` (#124935)Bénédikt Tran2024-10-083-45/+93
* gh-53203: Improve tests for strptime() (GH-125090)Serhiy Storchaka2024-10-0810-85/+200
* bpo-34206: Improve docs and test coverage for pre-init functions (#8023)Alyssa Coghlan2024-10-087-78/+199
* gh-69998: Fix decoding error in locale.nl_langinfo() (GH-124963)Serhiy Storchaka2024-10-085-70/+153
* gh-70870: Clarify dual usage of 'free variable' (#122545)Alyssa Coghlan2024-10-089-21/+66
* gh-90102: Remove isatty call during regular open (#124922)Cody Maloney2024-10-089-5/+47
* Docs: make a tutorial example more precise (#125066)Ned Batchelder2024-10-071-11/+9
* gh-125072: Add label for assignment expressions; update tracked section for a...Emily Morehouse2024-10-073-29/+41
* gh-124502: Add PyUnicode_Equal() function (#124504)Victor Stinner2024-10-0711-2/+111
* gh-122392: IDLE - Fix overlapping lines in browsers (#122392) (#124975)Zhikang Yan2024-10-072-4/+12
* gh-124653: Relax (again) detection of queue API for logging handlers (GH-124...Bénédikt Tran2024-10-074-56/+79
* Use _PyLong_GetOne() and _PyLong_GetZero() in long_invmod() (#125044)Victor Stinner2024-10-071-11/+2
* gh-124182: Explain naming rules for struct sequence types (#124335)ffelixg2024-10-071-1/+2