Python 3.11.0a4
  1. 9471106 Python 3.11.0a4 by Pablo Galindo · 3 years, 7 months ago v3.11.0a4
  2. 1a4d1c1 bpo-46070: _PyGC_Fini() untracks objects (GH-30577) by Victor Stinner · 3 years, 7 months ago
  3. 6be8489 bpo-44133: Link Python executable with object files (GH-30556) by Victor Stinner · 3 years, 7 months ago
  4. 0885999 bpo-46355: Document PyFrameObject and PyThreadState changes (GH-30558) by Victor Stinner · 3 years, 7 months ago
  5. f779fac bpo-46358: modernize `test_asyncio` (GH-30562) by Nikita Sobolev · 3 years, 7 months ago
  6. 8c49d05 bpo-46359: Modernize `test_typing` by removing checks for EOL Python versions (GH-30563) by Nikita Sobolev · 3 years, 7 months ago
  7. c590b58 bpo-46328: Add sys.exception() (GH-30514) by Irit Katriel · 3 years, 7 months ago
  8. 9c2ebb9 bpo-46344: Fix trace bug in else of try and try-star blocks (GH-30544) by Irit Katriel · 3 years, 7 months ago
  9. 443b308 bpo-40479: Fix hashlib's usedforsecurity for OpenSSL 3.0.0 (GH-30455) by Christian Heimes · 3 years, 7 months ago
  10. a6ca8ee bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507) by Christian Heimes · 3 years, 7 months ago
  11. 1de6015 bpo-46345: Add a test case for implicit `Optional` class attribute (GH-30535) by Nikita Sobolev · 3 years, 7 months ago
  12. ed57b36 bpo-45953: Statically allocate the main interpreter (and initial thread state). (gh-29883) by Eric Snow · 3 years, 7 months ago
  13. 0bbf30e bpo-46342: make @typing.final introspectable (GH-30530) by Jelle Zijlstra · 3 years, 7 months ago
  14. e34c936 bpo-40280: Allow to compile _testcapi as builtin module (GH-30559) by Christian Heimes · 3 years, 7 months ago
  15. fc05e6b bpo-46020: Optimize long_pow for the common case (GH-30555) by Tim Peters · 3 years, 7 months ago
  16. e2a9c8e bpo-46348: modernize `test_typing` (GH-30547) by Nikita Sobolev · 3 years, 7 months ago
  17. 43839ba bpo-40280: Add --with-emscripten-target to build for browser or node (GH-30552) by Christian Heimes · 3 years, 7 months ago
  18. be578e0 bpo-46347: Yet another fix in the erorr path of PyEval_EvalCodeEx (#30554) by Yury Selivanov · 3 years, 7 months ago
  19. 20b5791 bpo-46347: Fix PyEval_EvalCodeEx to correctly cleanup in error paths (#30551) by Yury Selivanov · 3 years, 7 months ago
  20. 08bc1ba bpo-46303: Fix fileutils.h compiler warnings (GH-30550) by Victor Stinner · 3 years, 7 months ago
  21. 607d8a8 bpo-46347: Fix memory leak in PyEval_EvalCodeEx. (#30546) by Yury Selivanov · 3 years, 7 months ago
  22. dce642f bpo-46307: Add string.Template.get_identifiers() method (GH-30493) by Ben Kehoe · 3 years, 7 months ago
  23. cf496d6 bpo-45953: Statically allocate and initialize global bytes objects. (gh-30096) by Eric Snow · 3 years, 7 months ago
  24. 6f05e1e [doc] Add license_url for python-docs-theme 2022.1. (GH-30527) by Julien Palard · 3 years, 7 months ago
  25. cedec19 bpo-46339: Fix crash in the parser when computing error text for multi-line f-strings (GH-30529) by Pablo Galindo Salgado · 3 years, 7 months ago
  26. 43c5c13 closes bpo-46253: Change Py_UNICODE to Py_UCS4 in the C API docs to match the current source code (GH-30387) by Julian Gilbey · 3 years, 7 months ago
  27. 73decdf Remove unused `Any` from `Concatenate` example in typing docs (GH-30516) by Michael Oliver · 3 years, 7 months ago
  28. 7357ac9 News item for issue 46314. (GH-30515) by Mark Shannon · 3 years, 7 months ago
  29. bd04fac bpo-46331: Do not set line number of instruction storing doc-string. (GH-30518) by Mark Shannon · 3 years, 7 months ago
  30. ea1a545 bpo-46303: Move fileutils.h private functions to internal C API (GH-30484) by Victor Stinner · 3 years, 7 months ago
  31. fc75bfb bpo-46310: simplify `for` loop in `asyncio/windows_events` (GH-30334) by Nikita Sobolev · 3 years, 7 months ago
  32. e13cdca bpo-46205: exit if no workers are alive in runtest_mp (GH-30470) by Sam Gross · 3 years, 7 months ago
  33. 081a214 bpo-46244: Remove __slots__ from typing.TypeVar, .ParamSpec (#30444) by Arie Bovenberg · 3 years, 7 months ago
  34. 6223cbf bpo-45331: [Enum] add rule to docs that mixin type must be subclassable (GH-30521) by Nikita Sobolev · 3 years, 7 months ago
  35. 13e4659 bpo-46327: [Enum] remove skipped tests (GH-30512) by Nikita Sobolev · 3 years, 7 months ago
  36. 582286d bpo-46301: [Enum] fix refleak tests (GH30510) by Nikita Sobolev · 3 years, 7 months ago
  37. 0d63967 bpo-46332: use raise..from instead of assigning __cause__ and raising (GH-30517) by Irit Katriel · 3 years, 7 months ago
  38. ec0c392 bpo-46314: Remove extra RESUME when compiling a lamdba. (GH-30513) by Mark Shannon · 3 years, 7 months ago
  39. d24cd49 bpo-46270: Describe the `in` and `not in` operators as membership tests. (GH-30504) by Raymond Hettinger · 3 years, 7 months ago
  40. 0b2b9d2 bpo-23882: unittest: Drop PEP 420 support from discovery. (GH-29745) by Inada Naoki · 3 years, 7 months ago
  41. 1bee9a4 bpo-46272: Fix two heading comments in python.gram (GH-30499) by Mark Dickinson · 3 years, 7 months ago
  42. 2d78797 bpo-37295: Use constant-time comb() and perm() for larger n depending on k (GH-30305) by Serhiy Storchaka · 3 years, 7 months ago
  43. 5c66414 bpo-40280: Disable epoll_create in Emscripten config.site (GH-30494) by Ethan Smith · 3 years, 7 months ago
  44. 0ea2ef5 Add a (conservative) timeout for Windows builds on GitHub Actions (GH-30301) by Mark Dickinson · 3 years, 7 months ago
  45. 3d11c1b bpo-46308: Fix unportable test(1) operator in configure script (GH-30490) by Thomas Klausner · 3 years, 7 months ago
  46. 0fc58c1 bpo-46306: simplify `CodeType` attribute access in `doctest.py` (GH-30481) by Nikita Sobolev · 3 years, 7 months ago
  47. 8d59d25 bpo-46301: [Enum] test uncomparable values in `_convert_` (GH-30472) by Nikita Sobolev · 3 years, 7 months ago
  48. b6aa38f bpo-46261: Update `sqlite3.Cursor.lastrowid` docs (GH-30407) by Erlend Egeberg Aasland · 3 years, 7 months ago
  49. ef5376e bpo-46290: Fix parameter names in dataclasses docs (GH-30450) by Zsolt Dollenstein · 3 years, 7 months ago
  50. 45d44b9 bpo-46299: Improve test_descr (GH-30475) by Dong-hee Na · 3 years, 7 months ago
  51. e63066cf bpo-46299: improve `test_descr.py` with stricter error handling (GH-30471) by Nikita Sobolev · 3 years, 7 months ago
  52. ad1d590 bpo-46235: Do all ref-counting at once during list/tuple multiplication (GH-30346) by Dennis Sweeney · 3 years, 7 months ago
  53. 6fa8b2c bpo-46237: Fix the line number of tokenizer errors inside f-strings (GH-30463) by Pablo Galindo Salgado · 3 years, 7 months ago
  54. d81182b bpo-46217: Revert use of Windows constant that is newer than what we support (GH-30473) by Steve Dower · 3 years, 7 months ago
  55. c9dc1f4 bpo-46297: Fix interpreter crash on startup with multiple PythonPaths set in registry (GH-30466) by Daniel · 3 years, 7 months ago
  56. 74d1663 bpo-46296: [Enum] add a test for missing `value` recovery (GH-30458) by Nikita Sobolev · 3 years, 7 months ago
  57. d382f7e bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467) by Batuhan Taskaya · 3 years, 7 months ago
  58. 6d07a9f bpo-28546: [doc] Clarify setting pdb breakpoints (GH-30360) by Hugo van Kemenade · 3 years, 7 months ago
  59. 273cb8e bpo-24650: Use full term "generator function" in yield expressions docs (GH-24663) by Jacob Walls · 3 years, 7 months ago
  60. 9b7aa6a bpo-46216: remove spurious link to os.system() from os.time() documentation (GH-30326) by Irit Katriel · 3 years, 7 months ago
  61. b127e70 bpo-46070: Fix asyncio initialisation guard (GH-30423) by Erlend Egeberg Aasland · 3 years, 7 months ago
  62. 994f90c bpo-45723: Fix detection of epoll (#30449) by Christian Heimes · 3 years, 7 months ago
  63. f4e325c bpo-41011: venv -- add more variables to pyvenv.cfg (GH-30382) by andrei kulakov · 3 years, 7 months ago
  64. 46c7a65 bpo-46251: Add 'Security Considerations' section to logging configura… (GH-30411) by Vinay Sajip · 3 years, 7 months ago
  65. c9137d4 bpo-46263: Fix second location that needs MALLOC_CONF on FreeBSD (GH-30440) by Christian Heimes · 3 years, 8 months ago
  66. 16dfabf bpo-46286: use the new POP_JUMP_IF_NOT_NONE opcode to simplify except* (GH-30439) by Irit Katriel · 3 years, 8 months ago
  67. 9c5fa9c bpo-46208: Fix normalization of relative paths in _Py_normpath()/os.path.normpath (GH-30362) by neonene · 3 years, 8 months ago
  68. 9925e70 bpo-45292: [PEP-654] exception groups and except* documentation (GH-30158) by Irit Katriel · 3 years, 8 months ago
  69. 68c76d9 bpo-46263: Do not ever expect "use_frozen_modules" to be -1. (gh-30438) by Eric Snow · 3 years, 8 months ago
  70. a4aa52d bpo-46263: FreeBSD 14.0 jemalloc workaround for junk bytes of freed memory (GH-30434) by Christian Heimes · 3 years, 8 months ago
  71. b50e5e9 bpo-46278: fix typo introduced in GH-30427 (GH-30430) by Kumar Aditya · 3 years, 8 months ago
  72. e028ae9 bpo-45923: Handle call events in bytecode (GH-30364) by Mark Shannon · 3 years, 8 months ago
  73. 3e43fac Reflect 'context' arg in 'AbstractEventLoop.call_*()' methods (GH-30427) by Andrew Svetlov · 3 years, 8 months ago
  74. 3db762d bpo-46031: add POP_JUMP_IF_NOT_NONE and POP_JUMP_IF_NONE (GH-30019) by penguin_wwy · 3 years, 8 months ago
  75. 35d6540 bpo-46006: Revert "bpo-40521: Per-interpreter interned strings (GH-20085)" (GH-30422) by Victor Stinner · 3 years, 8 months ago
  76. e5894ca bpo-46266: Add calendar day of week constants to __all__ (GH-30412) by Nikita Sobolev · 3 years, 8 months ago
  77. 817a6bc bpo-46269: [Enum] remove special-casing of `__new__` in `EnumType.__dir__` (GH-30421) by Nikita Sobolev · 3 years, 8 months ago
  78. 43aac29 bpo-46257: Convert statistics._ss() to a single pass algorithm (GH-30403) by Raymond Hettinger · 3 years, 8 months ago
  79. 46e4c25 bpo-46236: Fix PyFunction_GetAnnotations() returned tuple. (GH-30409) by Inada Naoki · 3 years, 8 months ago
  80. dd50316 bpo-43137: Revert "webbrowser: Don't run gvfs-open on GNOME" (GH-30417) by Simon McVittie · 3 years, 8 months ago
  81. 332e6b9 bpo-45256: Don't track the exact depth of each `InterpreterFrame` (GH-30372) by Brandt Bucher · 3 years, 8 months ago
  82. cae5554 bpo-46263: Don't use MULTIARCH on FreeBSD (#30410) by Christian Heimes · 3 years, 8 months ago
  83. 91bc6f9 bpo-46262: [Enum] test error path in `Flag._missing_` (GH-30408) by Nikita Sobolev · 3 years, 8 months ago
  84. 31e43cb bpo-46009: Remove GEN_START (GH-30367) by Brandt Bucher · 3 years, 8 months ago
  85. f404e26 Fix missing "," in the documentation of Executor Objects (GH-30404) by Philipp Claßen · 3 years, 8 months ago
  86. 7537f60 bpo-45609: More specialization stats for STORE_SUBSCR (GH-30193) by Dennis Sweeney · 3 years, 8 months ago
  87. 7d7817c bpo-20369: concurrent.futures.wait() now deduplicates futures given a… (GH-30168) by Kumar Aditya · 3 years, 8 months ago
  88. b949845 bpo-33252: Document that ResourceWarning is ignored by default (GH-30358) by Hugo van Kemenade · 3 years, 8 months ago
  89. e09d94a bpo-46231: Remove invalid_* rules preceded by more tokens from the grammar docs (GH-30341) by Pablo Galindo Salgado · 3 years, 8 months ago
  90. 70f415f bpo-46240: Correct the error for unclosed parentheses when the tokenizer is not finished (GH-30378) by Pablo Galindo Salgado · 3 years, 8 months ago
  91. a94461d bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302) by Irit Katriel · 3 years, 8 months ago
  92. a09062c bpo-44092: Move What's New entry to where it belongs (GH-30381) by Erlend Egeberg Aasland · 3 years, 8 months ago
  93. bef4883 Update old-style strings to f-strings (GH-30384) by David Gilbertson · 3 years, 8 months ago
  94. 5a2a650 bpo-46239: improve error message when importing `asyncio.windows_events` (GH-30353) by Nikita Sobolev · 3 years, 8 months ago
  95. 1b11133 bpo-46238: reuse `_winapi` constants in `asyncio.windows_events` (GH-30352) by Nikita Sobolev · 3 years, 8 months ago
  96. 3aa5242 bpo-46233: Minor speedup for bigint squaring (GH-30345) by Tim Peters · 3 years, 8 months ago
  97. f1a5844 bpo-44092: Remove unused member `reset` from `sqlite3.Cursor` (GH-30377) by Erlend Egeberg Aasland · 3 years, 8 months ago
  98. 2db5613 bpo-34538: Remove Exception subclassing from tutorial (GH-30361) by Hugo van Kemenade · 3 years, 8 months ago
  99. 770f43d Add doctest and improve readability for move_to_end() example. (#30370) by Raymond Hettinger · 3 years, 8 months ago
  100. 51700bf bpo-34931: [doc] clarify behavior of os.path.splitext() on paths with multiple leading periods (GH-30347) by Irit Katriel · 3 years, 8 months ago