Python 3.11.2
  1. 878ead1 Python 3.11.2 by Pablo Galindo · 2 years, 6 months ago v3.11.2
  2. 955ba28 [3.11] gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.11+ (GH-101127) (#101636) by Łukasz Langa · 2 years, 6 months ago
  3. 358b02d [3.11] gh-101266: Revert fix __sizeof__ for subclasses of int (#101638) by Mark Dickinson · 2 years, 6 months ago
  4. 9e7acaf gh-101562: typing: add tests for inheritance with NotRequired & Required in parent fields (GH-101563) by Miss Islington (bot) · 2 years, 6 months ago
  5. cf8973c gh-101541: [Enum] create flag psuedo-member without calling original __new__ (GH-101590) by Miss Islington (bot) · 2 years, 6 months ago
  6. 6ae8032 gh-101334: Don't force USTAR format in test_tarfile. (GH-101572) by Miss Islington (bot) · 2 years, 6 months ago
  7. cf89c16 [3.11] gh-101266: Fix __sizeof__ for subclasses of int (GH-101394) (#101579) by Mark Dickinson · 2 years, 6 months ago
  8. e98fa71 gh-101467: Correct py.exe handling of prefix matches and cases when only one runtime is installed (GH-101468) by Miss Islington (bot) · 2 years, 7 months ago
  9. 0c37ea9 [3.11] gh-101400: Fix incorrect lineno in exception message on contin… (gh-101447) by Dong-hee Na · 2 years, 7 months ago
  10. faf8068 gh-101229: Add tests for aliases of imported names (GH-101230) by Miss Islington (bot) · 2 years, 7 months ago
  11. fa7c37a [3.11] gh-99952: fix refcount issues in ctypes.Structure from_param() result (#101339) by Gregory P. Smith · 2 years, 7 months ago
  12. cd0fe5b [3.11] gh-101326: Fix regression when passing None to FutureIter.throw (GH-101327) (#101328) by Shantanu · 2 years, 7 months ago
  13. 29ff9da gh-101015: Fix `typing.get_type_hints` with unpacked `*tuple` (PEP 646) (GH-101031) by Miss Islington (bot) · 2 years, 7 months ago
  14. 69d12d8 [3.11] GH-101097: Switch from standard interval notation to greater or less than signs for random.random()'s documentation (GH-101119) (GH-101246) by Miss Islington (bot) · 2 years, 7 months ago
  15. 99da75e gh-101143: Remove references to `TimerHandle` from `asyncio.base_events.BaseEventLoop._add_callback` (GH-101197) by Miss Islington (bot) · 2 years, 7 months ago
  16. c6cfde6 gh-100750: pass encoding kwarg in lib/platform.py (GH-100751) by Miss Islington (bot) · 2 years, 7 months ago
  17. efe3a38 [3.11] gh-101144: Allow zipfile.Path .open & .read_text encoding to be positional (#101179) by Gregory P. Smith · 2 years, 7 months ago
  18. 87ade7e gh-100320: Fix path calculations on Windows when python.exe is moved outside of the normal location (GH-100947) by Steve Dower · 2 years, 7 months ago
  19. 855b1a9 [3.11] GH-100942: Fix incorrect cast in property_copy(). (GH-100965). (#101008) by Nikita Sobolev · 2 years, 7 months ago
  20. 39c1f68 gh-101021: Document binary parameters as bytes (GH-101024) by Miss Islington (bot) · 2 years, 7 months ago
  21. d06315a [3.11] GH-100573: Fix server hang caused by os.stat() on named pipe (Windows) (GH-100959) (#101019) by Miss Islington (bot) · 2 years, 7 months ago
  22. 6492492 gh-100247: Fix py.exe launcher not using entire shebang command for finding custom commands (GH-100944) by Miss Islington (bot) · 2 years, 7 months ago
  23. 55a26de gh-96290: Support partial/invalid UNC drives in ntpath.normpath() and splitdrive() (GH-100351) by Steve Dower · 2 years, 7 months ago
  24. cb6ff54 [3.11] gh-100931: Test all `pickle` protocols in `test_slice` (GH-100932). (GH-100979) by Nikita Sobolev · 2 years, 7 months ago
  25. db26437 [3.11] gh-100871: Improve `copy` module tests (GH-100872) (#100976) by Nikita Sobolev · 2 years, 7 months ago
  26. e707671 [3.11] GH-100892: Fix race in clearing `threading.local` (GH-100922). (#100937) by Kumar Aditya · 2 years, 7 months ago
  27. 1b2459d [3.11] gh-100160: Remove any deprecation warnings in asyncio.get_event_loop() (#100412) by Serhiy Storchaka · 2 years, 7 months ago
  28. 2d1128e GH-81061: Fix refcount issue when returning `None` from a `ctypes.py_object` callback (GH-13364) by Miss Islington (bot) · 2 years, 7 months ago
  29. 6184b80 GH-100805: Support numpy.array() in random.choice(). (GH-100830) by Miss Islington (bot) · 2 years, 7 months ago
  30. f488831 [3.11] gh-90104: avoid RecursionError on recursive dataclass field repr (gh-100756) (GH-100784) by Carl Meyer · 2 years, 8 months ago
  31. 541e7b8 gh-100739: Respect mock spec when checking for unsafe prefixes (GH-100740) by Miss Islington (bot) · 2 years, 8 months ago
  32. ad40764 GH-86508: skip binding to local addresses of different family in `asyncio.open_connection` (GH-100615) by Miss Islington (bot) · 2 years, 8 months ago
  33. 50409a2 [3.11] gh-100637: Fix int and bool __sizeof__ calculation to include the 1 element ob_digit array for 0 and False (GH-100663) (#100717) by Miss Islington (bot) · 2 years, 8 months ago
  34. 861cdef gh-95882: fix regression in the traceback of exceptions propagated from inside a contextlib context manager (GH-95883) by Miss Islington (bot) · 2 years, 8 months ago
  35. 83f8553 IDLE - fix module browser test (GH-100647) by Miss Islington (bot) · 2 years, 8 months ago
  36. c88a83e gh-99433: Fix `doctest` failure on `types.MethodWrapperType` (GH-99434) by Miss Islington (bot) · 2 years, 8 months ago
  37. dd520e7 gh-100600: Fix "coroutine was never awaited" warning in `test_coroutines` (GH-100601) by Miss Islington (bot) · 2 years, 8 months ago
  38. ebe4288 [3.11] GH-100342: check for allocation failure in AC `*args` parsing (GH-100343). (#100568) by Kumar Aditya · 2 years, 8 months ago
  39. fba8c7c gh-100553: Improve accuracy of sqlite3.Row iter test (GH-100555) by Miss Islington (bot) · 2 years, 8 months ago
  40. a3dbd4c [3.11] gh-64490: Fix bugs in argument clinic varargs processing (GH-32092) (#100368) by colorfulappl · 2 years, 8 months ago
  41. 18b43cf [3.11] gh-100520: Fix `rst` markup in `configparser` docstrings (GH-100524) (#100533) by Miss Islington (bot) · 2 years, 8 months ago
  42. 75b75df [3.11] gh-100287: Fix unittest.mock.seal with AsyncMock (GH-100496) (#100506) by Shantanu · 2 years, 8 months ago
  43. 44b664e gh-99535: Add test for inheritance of annotations and update documentation (GH-99990) by Miss Islington (bot) · 2 years, 8 months ago
  44. 714a93f [3.11] gh-100474: Fix handling of dirs named index.html in http.server (GH-100505) by Miss Islington (bot) · 2 years, 8 months ago
  45. 57e727a [3.11] gh-99110: Initialize frame->previous in init_frame to fix segmentation fault (GH-100182) (#100478) by Bill Fisher · 2 years, 8 months ago
  46. c4aff6d gh-94808: improve test coverage of number formatting (GH-99472) by Miss Islington (bot) · 2 years, 8 months ago
  47. d5eb2f4 bpo-40447: accept all path-like objects in compileall.compile_file (GH-19883) by Miss Islington (bot) · 2 years, 8 months ago
  48. f6fe4bb [3.11] gh-76963: PEP3118 itemsize of an empty ctypes array should not be 0 (GH-5576) (GH-100452) by Miss Islington (bot) · 2 years, 8 months ago
  49. 1e0631e gh-57762: fix misleading tkinter.Tk docstring (GH-98837) by Miss Islington (bot) · 2 years, 8 months ago
  50. 6afc389 Correct typo in typing.py (GH-100423) by Miss Islington (bot) · 2 years, 8 months ago
  51. 3e715e0 gh-78878: Fix crash when creating an instance of `_ctypes.CField` (GH-14837) by Miss Islington (bot) · 2 years, 8 months ago
  52. 0397f04 gh-100129: Add tests for pickling all builtin types and functions (GH-100142) by Miss Islington (bot) · 2 years, 8 months ago
  53. b2076b0 gh-100374: Fixed a bug in socket.getfqdn() (gh-100375) by Miss Islington (bot) · 2 years, 8 months ago
  54. ae8520c GH-100133: fix `asyncio` subprocess losing `stderr` and `stdout` output (GH-100154) by Miss Islington (bot) · 2 years, 8 months ago
  55. bed1d14 [3.11] gh-99240: Reset pointer to NULL when the pointed memory is freed in argument parsing (GH-99890) (#100385) by colorfulappl · 2 years, 8 months ago
  56. bee9051 [3.11] gh-85267: Improvements to inspect.signature __text_signature__ handling (GH-98796) (#100392) by Shantanu · 2 years, 8 months ago
  57. 73d2b15 [3.11] gh-99576: Fix cookiejar file that was not truncated for some classes (GH-99616) (GH-100377) by Miss Islington (bot) · 2 years, 8 months ago
  58. ba8e30c [3.11] gh-99240: Fix double-free bug in Argument Clinic str_converter generated code (GH-99241) (#100352) by colorfulappl · 2 years, 8 months ago
  59. c42a4ad [3.11] gh-64490: Fix refcount error when arguments are packed to tuple in argument clinic (GH-99233) (#100338) by colorfulappl · 2 years, 8 months ago
  60. dd323af [3.11] gh-96002: Add functional test for Argument Clinic (GH-96178) (#100230) by colorfulappl · 2 years, 8 months ago
  61. 3939a4b bpo-43984: Allow winreg.SetValueEx to set -1 without treating it as an error (GH-25775) by Miss Islington (bot) · 2 years, 8 months ago
  62. f43b3d5 [3.11] bpo-44817: Ignore additional errors in ntpath.realpath (GH-27574) (GH-100022) by Miss Islington (bot) · 2 years, 8 months ago
  63. 42fde2d test_ast uses infinite_recursion() to prevent crash (GH-100104) by Miss Islington (bot) · 2 years, 8 months ago
  64. d4426c8 gh-100098: [Enum] insist on actual tuples, no subclasses, for auto (GH-100099) by Miss Islington (bot) · 2 years, 8 months ago
  65. 846898e gh-98778: Update HTTPError to initialize properly even if fp is None (gh-99966) by Miss Islington (bot) · 2 years, 8 months ago
  66. 2997f39 gh-83035: handle decorator with nested parens in inspect.getsource (GH-99654) by Miss Islington (bot) · 2 years, 8 months ago
  67. 2b97ddd gh-100050: Fix an assertion error when raising unclosed parenthesis errors in the tokenizer (GH-100065) by Miss Islington (bot) · 2 years, 9 months ago
  68. a7a450f Python 3.11.1 by Pablo Galindo · 2 years, 9 months ago v3.11.1
  69. 2182a71 [3.11] GH-99729: Unlink frames before clearing them (#100047) by Brandt Bucher · 2 years, 9 months ago
  70. 3fae04b [3.11] gh-93453: Only emit deprecation warning in asyncio.get_event_loop when a new event loop is created (#99949) by Serhiy Storchaka · 2 years, 9 months ago
  71. b2ff0f7 gh-100001: Also escape \s in http.server log messages. (GH-100038) by Miss Islington (bot) · 2 years, 9 months ago
  72. a726f74 gh-100001: Omit control characters in http.server stderr logs. (GH-100002) by Miss Islington (bot) · 2 years, 9 months ago
  73. 32a2193 [3.11] gh-60203: Revert changes in cycle.__setstate__ (GH-99982) (#100016) by Łukasz Langa · 2 years, 9 months ago
  74. 4a7612f gh-99892: test_unicodedata: skip test on download failure (GH-100011) by Miss Islington (bot) · 2 years, 9 months ago
  75. 5533cf6 gh-100005: Skip test_script_as_dev_fd() on FreeBSD (GH-100006) by Miss Islington (bot) · 2 years, 9 months ago
  76. 374b0a2 [3.11] bpo-40882: Fix a memory leak in SharedMemory on Windows (GH-20684) (#99973) by Luke Garland · 2 years, 9 months ago
  77. 9bcc68b gh-98458: unittest: bugfix for infinite loop while handling chained exceptions that contain cycles (GH-98459) by Miss Islington (bot) · 2 years, 9 months ago
  78. 7aa87bb gh-60203: Always pass True/False as boolean arguments in tests (GH-99983) by Miss Islington (bot) · 2 years, 9 months ago
  79. 9e38553 [3.11] gh-99886: Fix crash when freeing objects with managed dictionaries (#99902) by Ken Jin · 2 years, 9 months ago
  80. 4710a75 gh-99934: test_marshal.py: add more elements in test_deterministic_sets (GH-99935) by Miss Islington (bot) · 2 years, 9 months ago
  81. 6282ef6 [3.11] gh-99891: Fix infinite recursion in the tokenizer when showing warnings (GH-99893) (GH-99896) by Pablo Galindo Salgado · 2 years, 9 months ago
  82. 0076ca4 gh-96192: fix os.ismount() to use a path that is str or bytes (GH-96194) by Miss Islington (bot) · 2 years, 9 months ago
  83. 8dafefc gh-82836: fix private network check (GH-97733) by Miss Islington (bot) · 2 years, 9 months ago
  84. 74920aa gh-99344, gh-99379, gh-99382: Fix issues in substitution of ParamSpec and TypeVarTuple (GH-99412) by Miss Islington (bot) · 2 years, 9 months ago
  85. 5bbf8ed [3.11] gh-99811: Use correct variable to search for time in format string (GH-99812) (GH-99851) by Miss Islington (bot) · 2 years, 9 months ago
  86. 6f658dd [3.11] bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and segfaults (GH-18640) (#99841) by Kumar Aditya · 2 years, 9 months ago
  87. fce9516 gh-51524: Fix bug when calling trace.CoverageResults with valid infile (GH-99629) by Miss Islington (bot) · 2 years, 9 months ago
  88. e4cfdaa GH-87235: Make sure "python /dev/fd/9 9</path/to/script.py" works on macOS (GH-99768) by Miss Islington (bot) · 2 years, 9 months ago
  89. 193a25e gh-91078: Return None from TarFile.next when the tarfile is empty (GH-91850) by Miss Islington (bot) · 2 years, 9 months ago
  90. 45ffab4 gh-97966: Restore prior expectation that uname_result._fields and ._asdict would include the processor. (gh-98343) by Miss Islington (bot) · 2 years, 9 months ago
  91. c06f74f bpo-38031: Fix a possible assertion failure in _io.FileIO() (GH-GH-5688) by Miss Islington (bot) · 2 years, 9 months ago
  92. 24fad64 [3.11] gh-88863: Clear ref cycles to resolve leak when asyncio.open_connection raises (GH-95739) (#99721) by Dong Uk, Kang · 2 years, 9 months ago
  93. 9a7899b [3.11] gh-99645: Fix a bug in handling class cleanups in unittest.TestCase (GH-99646) (GH-99698) by Serhiy Storchaka · 2 years, 9 months ago
  94. 85dbd2d gh-99341: Cover type ignore nodes when incrementing line numbers (GH-99422) by Miss Islington (bot) · 2 years, 9 months ago
  95. e26aa24 gh-99659: Use correct exceptions in sqlite3 bigmem tests (GH-99660) by Miss Islington (bot) · 2 years, 9 months ago
  96. a3480ec [3.11] gh-99103: Normalize specialized traceback anchors against the current line (#99423) by Batuhan Taskaya · 2 years, 9 months ago
  97. 555e76e Add more details in test_unittest (GH-99626) by Miss Islington (bot) · 2 years, 9 months ago
  98. 9dda902 gh-99578: Fix refleak in _imp.create_builtin() (GH-99642) by Miss Islington (bot) · 2 years, 9 months ago
  99. f381644 gh-99581: Fix a buffer overflow in the tokenizer when copying lines that fill the available buffer (GH-99605) by Miss Islington (bot) · 2 years, 9 months ago
  100. 152a437 [3.11] gh-99211: Point to except/except* on syntax errors when mixing them (GH-99215) (GH-99622) by Lysandros Nikolaou · 2 years, 9 months ago