Python 3.13.0a1
  1. ad056f0 Python 3.13.0a1 by Thomas Wouters · 1 year, 10 months ago v3.13.0a1
  2. 989a253 gh-110525: Delete `test_c_api` method from `set` object (#110688) by Nikita Sobolev · 1 year, 10 months ago
  3. 6478dea GH-110786: suppress BrokenPipeError on the sysconfig CLI (#110791) by Filipe Laíns · 1 year, 10 months ago
  4. 4a53a39 GH-103480: make sysconfig a package (GH-110785) by Filipe Laíns · 1 year, 10 months ago
  5. d2a536b gh-110782: Fix crash when TypeVar is constructed with keyword args (#110784) by Jelle Zijlstra · 1 year, 10 months ago
  6. aa3f419 gh-109653: Improve the import time of `email.utils` (#109824) by Alex Waygood · 1 year, 10 months ago
  7. e733136 gh-110721: Use the traceback module for PyErr_Display() and fallback to the C implementation (#110702) by Pablo Galindo Salgado · 1 year, 10 months ago
  8. 8c6c14b gh-94597: Add asyncio.EventLoop (#110723) by Thomas Grainger · 1 year, 10 months ago
  9. 1e3460d gh-110752: Reset `ceval.eval_breaker` to 0 in `interpreter_clear` (GH-110753) by Tian Gao · 1 year, 10 months ago
  10. b6000d2 gh-109409: Fix inheritance of frozen dataclass from non-frozen dataclass mixins (gh-109437) by Nikita Sobolev · 1 year, 10 months ago
  11. 3d18034 gh-110696: Fix incorrect syntax error message for incorrect argument unpacking (#110706) by Pablo Galindo Salgado · 1 year, 10 months ago
  12. 5257ade0 gh-110682: Ignore `__match_args__` from `__instancecheck__` in protocols (#110683) by Nikita Sobolev · 1 year, 10 months ago
  13. 88ecb19 gh-85283: _stat extension now uses the limited C API (#110711) by Victor Stinner · 1 year, 10 months ago
  14. 3ac8e69 gh-110733: Micro-optimization in BaseEventLoop._run_once (#110735) by J. Nick Koston · 1 year, 10 months ago
  15. 6f4a499 gh-85283: If Py_LIMITED_API is defined, undefine Py_BUILD_CORE (#110725) by Victor Stinner · 1 year, 10 months ago
  16. c523ce0 gh-65052: Prevent pdb from crashing when trying to display objects (#110578) by Tian Gao · 1 year, 10 months ago
  17. 01481f2 gh-104169: Refactor tokenizer into lexer and wrappers (#110684) by Lysandros Nikolaou · 1 year, 10 months ago
  18. eb50cd3 gh-110289: C API: Add PyUnicode_EqualToUTF8() and PyUnicode_EqualToUTF8AndSize() functions (GH-110297) by Serhiy Storchaka · 1 year, 10 months ago
  19. d1f7fae GH-107518: Remove the Argument Clinic How-To (#109900) by Adam Turner · 1 year, 10 months ago
  20. f83fa0b gh-84489: Properly handle trailing spaces in Py_BuildValue() format strings (GH-21158) by Zackery Spytz · 1 year, 10 months ago
  21. b5f7777 GH-110488: Fix two small issues in `pathlib.PurePath.with_name()` (#110651) by Barney Gale · 1 year, 10 months ago
  22. e07c37c gh-110647: Fix signal test_stress_modifying_handlers() (#110650) by Victor Stinner · 1 year, 10 months ago
  23. 0d805b9 gh-108826: Document `dis` module CLI and rename `_test` function to `main` (#108827) by Radislav Chugunov · 1 year, 10 months ago
  24. 7f702b2 gh-110388: Add tests for tty (GH-110394) by Serhiy Storchaka · 1 year, 10 months ago
  25. 92a9e98 gh-81002: Add tests for termios (GH-110386) by Serhiy Storchaka · 1 year, 10 months ago
  26. 344d3a2 gh-110590: Fix a bug where _sre.compile would overwrite exceptions (#110591) by Nikita Sobolev · 1 year, 10 months ago
  27. 0362cbf gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667) by Donghee Na · 1 year, 10 months ago
  28. 13380da GH-104584: Fix refleak when tracing through calls (GH-110593) by Brandt Bucher · 1 year, 10 months ago
  29. 96fed66 gh-110378: Close invalid generators in contextmanager and asynccontextmanager (GH-110499) by Serhiy Storchaka · 1 year, 10 months ago
  30. ea7b53f gh-107652: Set up CIFuzz to run fuzz targets continuously (#107653) by Illia Volochii · 1 year, 10 months ago
  31. 326c6c4 gh-110519: Improve deprecation warning in the gettext module (#110520) by Serhiy Storchaka · 1 year, 10 months ago
  32. f4cb0d2 gh-109191: Fix build with newer editline (gh-110239) by Bo Anderson · 1 year, 10 months ago
  33. 12cc679 gh-110437: Allow overriding VCRuntimeDLL with a semicolon separated list of DLLs to bundle (GH-110470) by Steve Dower · 1 year, 10 months ago
  34. 48419a5 gh-109286: Update macOS installer to use SQLite 3.43.1 (#110482) by jtranquilli · 1 year, 10 months ago
  35. dd4bb05 gh-110514: Add PY_THROW to `sys.setprofile` events (GH-110524) by Tian Gao · 1 year, 10 months ago
  36. 9f8282d gh-106670: Set convenience variable for post mortem debugging (#110493) by Tian Gao · 1 year, 10 months ago
  37. d96a8cd gh-89902: Deprecate non-standard format specifier "N" for Decimal (GH-110508) by Serhiy Storchaka · 1 year, 10 months ago
  38. dd9d781 gh-110237: Check `PyList_Append` for errors in `_PyEval_MatchClass` (#110238) by denballakh · 1 year, 10 months ago
  39. de2a403 gh-108277: Add os.timerfd_create() function (#108382) by Masaru Tsuchiyama · 1 year, 11 months ago
  40. 64f158e gh-110397: Add Py_IsFinalizing() to the stable ABI (#110441) by Victor Stinner · 1 year, 11 months ago
  41. 5fd8821 GH-110455: Guard `assert(tstate->thread_id > 0)` with `#ifndef HAVE_PTHREAD_STUBS` (GH-110487) by Brett Cannon · 1 year, 11 months ago
  42. f013b47 gh-110489: Optimise math.ceil for known exact float (#108801) by Shantanu · 1 year, 11 months ago
  43. 201dc11 gh-109286: Update Windows installer to use SQLite 3.43.1 (#110403) by jtranquilli · 1 year, 11 months ago
  44. a4baa9e gh-103053: Fix test_tools.test_freeze on FreeBSD (#110451) by Victor Stinner · 1 year, 11 months ago
  45. a155f9f gh-103053: Fix make check-clean-src: check "python" program (#110449) by Victor Stinner · 1 year, 11 months ago
  46. bb057b3 gh-85283: Add PySys_AuditTuple() function (#108965) by Victor Stinner · 1 year, 11 months ago
  47. 318f5df gh-110167: Fix test_socket deadlock in doCleanups() (#110416) by Victor Stinner · 1 year, 11 months ago
  48. d33aa18 gh-82367: Use `FindFirstFile` Win32 API in `ntpath.realpath()` (GH-110298) by 박문식 · 1 year, 11 months ago
  49. 2cb62c6 gh-110309: Prune empty constant in format specs (#110320) by sunmy2019 · 1 year, 11 months ago
  50. cc389ef gh-110259: Fix f-strings with multiline expressions and format specs (#110271) by Pablo Galindo Salgado · 1 year, 11 months ago
  51. 2bbbab2 gh-110365: Fix error overwrite in `termios.tcsetattr` (#110366) by Nikita Sobolev · 1 year, 11 months ago
  52. 6592976 gh-110367: Enhance regrtest -jN --verbose3 (#110368) by Victor Stinner · 1 year, 11 months ago
  53. cf6f23b gh-88402: Add new sysconfig variables on Windows (GH-110049) by Sam Gross · 1 year, 11 months ago
  54. 3bbe3b7 gh-110222: Add support of PyStructSequence in copy.replace() (GH-110223) by Xuehai Pan · 1 year, 11 months ago
  55. 9561648 gh-110235: Raise TypeError for duplicate/unknown fields in PyStructSequence constructor (GH-110258) by Xuehai Pan · 1 year, 11 months ago
  56. bf4bc36 GH-109369: Merge all eval-breaker flags and monitoring version into one word. (GH-109846) by Mark Shannon · 1 year, 11 months ago
  57. 254e30c gh-109151: Enable readline in the sqlite3 CLI (GH-109152) by Serhiy Storchaka · 1 year, 11 months ago
  58. 1465386 gh-110171: `libregrtest` always sets `random.seed` (#110172) by Nikita Sobolev · 1 year, 11 months ago
  59. 5b9a3fd gh-110273: dataclasses.replace() now raise TypeError for all invalid arguments (GH-110274) by Serhiy Storchaka · 1 year, 11 months ago
  60. bfe7e72 gh-109653: Defer importing `warnings` in several modules (#110286) by Alex Waygood · 1 year, 11 months ago
  61. d735016 gh-108867: Add PyThreadState_GetUnchecked() function (#108870) by Victor Stinner · 1 year, 11 months ago
  62. 6ab6040 gh-110276: No longer ignore PROFILE_TASK failure silently (#110295) by Victor Stinner · 1 year, 11 months ago
  63. 2d4865d gh-110267: Add tests for pickling and copying PyStructSequence objects (GH-110272) by Xuehai Pan · 1 year, 11 months ago
  64. 1001233 Remove unused Misc/requirements-test.txt (#110240) by Hugo van Kemenade · 1 year, 11 months ago
  65. 6678ef4 Add --inline-caches flag to dis command line (#110249) by Guido van Rossum · 1 year, 11 months ago
  66. 21a6263 gh-109653: Reduce the import time of `random` by 60% (#110221) by Alex Waygood · 1 year, 11 months ago
  67. 1dd9dee gh-105716: Support Background Threads in Subinterpreters Consistently (gh-109921) by Eric Snow · 1 year, 11 months ago
  68. a040a32 gh-109853: Fix sys.path[0] For Subinterpreters (gh-109994) by Eric Snow · 1 year, 11 months ago
  69. fc2cb86 gh-107073: Make PyObject_VisitManagedDict() public (#108763) by Victor Stinner · 1 year, 11 months ago
  70. 4d0d1c3 gh-110014: Remove PY_TIMEOUT_MAX from limited C API (#110217) by Victor Stinner · 1 year, 11 months ago
  71. 1b3bc61 gh-83180: Made launcher treat shebang 'python' tags as low priority so that active virtual environments are preferred (GH-108101) by Steve Dower · 1 year, 11 months ago
  72. 29b875b gh-109590: Update shutil.which on Windows to prefer a PATHEXT extension on executable files (GH-109995) by Charles Machalow · 1 year, 11 months ago
  73. 65c2850 gh-110164: regrtest disables random if SOURCE_DATE_EPOCH (#110168) by Victor Stinner · 1 year, 11 months ago
  74. 15de493 GH-107465: Add `pathlib.Path.from_uri()` classmethod. (#107640) by Barney Gale · 1 year, 11 months ago
  75. 62405c7 gh-110150: Fix base case handling in quantiles() (gh-110151) by Raymond Hettinger · 1 year, 11 months ago
  76. a46e960 gh-109649: Use os.process_cpu_count() (#110165) by Victor Stinner · 1 year, 11 months ago
  77. 53eb9a6 gh-110152: regrtest handles cross compilation and HOSTRUNNER (#110156) by Victor Stinner · 1 year, 11 months ago
  78. c815210 gh-109649: Add os.process_cpu_count() function (#109907) by Victor Stinner · 1 year, 11 months ago
  79. 74e425e gh-110014: Fix _POSIX_THREADS and _POSIX_SEMAPHORES usage (#110139) by Victor Stinner · 1 year, 11 months ago
  80. 89966a6 GH-89812: Add `pathlib._PathBase` (#106337) by Barney Gale · 1 year, 11 months ago
  81. cbdacc7 GH-101100: Fix reference warnings for ``namedtuple`` (#110113) by Adam Turner · 1 year, 11 months ago
  82. 9c91141 gh-109566: Remove make testall (#110122) by Victor Stinner · 1 year, 11 months ago
  83. 6351842 gh-109047: concurrent.futures catches PythonFinalizationError (#109810) by Victor Stinner · 1 year, 11 months ago
  84. 3439cb0 gh-66143: Allow copying and pickling of CodecInfo object (GH-109235) by Furkan Onder · 1 year, 11 months ago
  85. 7d57288 gh-109495: Remove unused slots from the Python implementation of datetime (GH-109494) by James Hilton-Balfe · 1 year, 11 months ago
  86. 86e76ab gh-110031: Skip test_threading fork tests if ASAN (#110100) by Victor Stinner · 1 year, 11 months ago
  87. db0a258 gh-110088, gh-109878: Fix test_asyncio timeouts (#110092) by Victor Stinner · 1 year, 11 months ago
  88. e27adc6 gh-109634: Fix `:samp:` syntax (GH-110073) by Jacob Coffee · 1 year, 11 months ago
  89. 7dc2c50 gh-110045: Update symtable module for PEP 695 (#110066) by Jelle Zijlstra · 1 year, 11 months ago
  90. bd4518c gh-110036: multiprocessing Popen.terminate() catches PermissionError (#110037) by Victor Stinner · 1 year, 11 months ago
  91. 4e356ad gh-109974: Fix threading lock_tests race conditions (#110057) by Victor Stinner · 1 year, 11 months ago
  92. b488c0d gh-109991: Remove obsolete NEWS entries for OpenSSL 3.0.10 (GH-110055) by Zachary Ware · 1 year, 11 months ago
  93. cf4c297 gh-109991: Update Windows build to use OpenSSL 3.0.11 (GH-110054) by Zachary Ware · 1 year, 11 months ago
  94. f580edc gh-109889: fix compiler's redundant NOP detection to look past NOPs with no lineno when looking for the next instruction's lineno (#109987) by Irit Katriel · 1 year, 11 months ago
  95. b14f0ab gh-110038: KqueueSelector must count all read/write events (#110039) by Davide Rizzo · 1 year, 11 months ago
  96. 7e0fbf5 gh-110033: Fix signal test_interprocess_signal() (#110035) by Victor Stinner · 1 year, 11 months ago
  97. 7df8b16 gh-109782: Ensure `os.path.isdir` has the same signature on all platforms (GH-109790) by Amin Alaee · 1 year, 11 months ago
  98. 9be283e gh-109594: Fix concurrent.futures test_timeout() (#110018) by Victor Stinner · 1 year, 11 months ago
  99. 8f324b7 gh-109972: Split test_gdb.py into test_gdb package (#109977) by Victor Stinner · 1 year, 11 months ago
  100. 98c0c1d gh-109991: Update macOS installer to use OpenSSL 3.0.10. (GH-110003) by Ned Deily · 1 year, 11 months ago