aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Skip tests which interact with invalid UTF-8 filesgentoo-3.12.0b2Sam James2023-06-079-0/+14
* Workaround clang+musl build failureMichał Górny2023-06-071-9/+11
* Skip sched/priority testsSam James2023-06-071-0/+2
* ssl: Hard-disable SSLv3 to avoid automagic depsMichał Górny2023-06-071-0/+4
* Skip RDS socket tests that hang frequentlyMichał Górny2023-06-071-0/+1
* Blacklist test_pickletools from __all__ test as it imports numpyMichał Górny2023-06-071-0/+2
* Python 3.12.0b2v3.12.0b2Thomas Wouters2023-06-0654-234/+1207
* [3.12] GH-105162: Account for `INSTRUMENTED_RESUME` in gen.close/throw. (GH-1...Miss Islington (bot)2023-06-063-3/+52
* [3.12] gh-104411: Update test_getint for Tcl 9.0 (GH-104412) (#105356)Miss Islington (bot)2023-06-061-1/+4
* [3.12] gh-104399: Use newer libtommath APIs when necessary (GH-104407) (#105343)Miss Islington (bot)2023-06-062-2/+25
* [3.12] gh-102304: doc: Add links to Stable ABI and Limited C API (#105345) (#...Victor Stinner2023-06-0616-42/+53
* [3.12] gh-105259: Ensure we don't show newline characters for trailing NEWLIN...Miss Islington (bot)2023-06-065-5/+17
* [3.12] gh-90005: Don't link with libbsd if not needed (#105236) (#105360)Erlend E. Aasland2023-06-063-5/+9
* [3.12] gh-105324: Fix tokenize module main function for stdin (GH-105325) (#1...Miss Islington (bot)2023-06-052-2/+3
* [3.12] gh-89412: Add missing attributes (added in 3.10) to traceback module d...Miss Islington (bot)2023-06-053-2/+18
* [3.12] gh-97908: CAPI docs: Remove repeated struct names from member docs (GH...Miss Islington (bot)2023-06-052-8/+23
* [3.12] What's New in 3.12: List 'Improved Modules' alphabetically (GH-105315)...Hugo van Kemenade2023-06-051-107/+107
* [3.12] Clarify that error messages are better with PEP 701 (GH-105150) (#105169)Miss Islington (bot)2023-06-051-0/+25
* [3.12] gh-105286: Improve `typing.py` docstrings (#105287) (#105319)Alex Waygood2023-06-051-220/+253
* [3.12] gh-105280: Ensure `isinstance([], collections.abc.Mapping)` always eva...Miss Islington (bot)2023-06-053-8/+38
* [3.12] gh-105237: Allow calling `issubclass(X, typing.Protocol)` again (GH-10...Miss Islington (bot)2023-06-053-0/+65
* [3.12] gh-105164: Detect annotations inside match blocks (GH-105177) (#105313)Miss Islington (bot)2023-06-053-0/+123
* [3.12] gh-98963: Restore the ability to have a dict-less property. (GH-105262...Miss Islington (bot)2023-06-053-13/+97
* [3.12] gh-104882: Docs: fix description of relationship between `socket.getbl...Miss Islington (bot)2023-06-041-1/+1
* [3.12] Fix typo in Python 3.12 What's New (GH-105278) (#105282)Miss Islington (bot)2023-06-041-2/+2
* [3.12] gh-104690 Disallow thread creation and fork at interpreter finalizatio...Miss Islington (bot)2023-06-048-30/+97
* [3.12] gh-89415: Mention new `IP_*` constants in `socket` module in the docs ...Miss Islington (bot)2023-06-031-1/+2
* [3.12] gh-105080: Fixed inconsistent signature on derived classes (GH-105217)...Miss Islington (bot)2023-06-023-11/+31
* [3.12] gh-104614: Fix potential ref. leak in _testcapimodule/get_basic_static...Miss Islington (bot)2023-06-021-1/+3
* [3.12] gh-102778: update documentation of PyErr_PrintEx and traceback.print_l...Miss Islington (bot)2023-06-022-7/+11
* [3.12] gh-105194: Fix format specifier escaped characters in f-strings (GH-10...Miss Islington (bot)2023-06-026-2/+34
* [3.12] gh-105184: document that marshal functions can fail and need to be che...Miss Islington (bot)2023-06-022-0/+8
* [3.12] gh-104799: Default missing lists in AST to the empty list (GH-104834) ...Miss Islington (bot)2023-06-024-239/+400
* [3.12] gh-104614: Make Sure ob_type is Always Set Correctly by PyType_Ready()...Miss Islington (bot)2023-06-014-17/+128
* [3.12] gh-104341: Call _PyEval_ReleaseLock() with NULL When Finalizing the Cu...Miss Islington (bot)2023-06-014-9/+46
* [3.12] gh-105020: Share tp_bases and tp_mro Between Interpreters For All Stat...Miss Islington (bot)2023-06-017-26462/+26544
* [3.12] GH-89886: Bump to GNU Autoconf v2.71 (#104925) (#105207)Erlend E. Aasland2023-06-018-7426/+10591
* [3.12] gh-103142: Upgrade binary builds and CI to OpenSSL 1.1.1u (GH-105174) ...Miss Islington (bot)2023-06-0113-18/+8794
* [3.12] gh-89886: Rely on HAVE_SYS_TIME_H (GH-105058) (#105192)Miss Islington (bot)2023-06-015-19/+10
* gh-105146: Update links at end of Windows installer (uninstall/repair) (GH-10...Miss Islington (bot)2023-05-312-3/+5
* [3.12] gh-102251: Explicitly free state for test modules with state in test_i...Miss Islington (bot)2023-05-312-5/+31
* [3.12] gh-102304: Fix 2 New Stable ABI Functions (gh-104762) (gh-105123)Eric Snow2023-05-314-1/+14
* [3.12] GH-105113: Improve performance of `pathlib.PurePath.match()` (GH-105114)Barney Gale2023-05-313-14/+81
* [3.12] gh-105144: Runtime-checkable protocols: move all 'sanity checks' to `_...Miss Islington (bot)2023-05-313-37/+111
* [3.12] gh-87729: add LOAD_SUPER_ATTR to 3.12 What's New (GH-105125) (#105143)Miss Islington (bot)2023-05-311-0/+7
* [3.12] gh-97933: add LOAD_FAST_AND_CLEAR to 3.12 What's New bytecode section ...Miss Islington (bot)2023-05-311-0/+3
* [3.12] gh-105096: Reformat wave documentation (#105136) (#105138)Victor Stinner2023-05-313-102/+109
* [3.12] gh-105069: Add a readline-like callable to the tokenizer to consume in...Miss Islington (bot)2023-05-317-96/+274
* [3.12] gh-105042: Disable unmatched parens syntax error in python tokenize (G...Miss Islington (bot)2023-05-315-34/+49
* [3.12] gh-105091: stable_abi.py: Remove "Unixy" check from --all on other pla...Miss Islington (bot)2023-05-311-1/+2