summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* gh-104337: Clarify random.gammavariate doc entry (#104410)Terry Jan Reedy2023-05-141-3/+6
* Minor improvements to typing docs (#104465)Jelle Zijlstra2023-05-141-4/+6
* gh-87092: avoid gcc warning on uninitialized struct field in assemble.c (#104...Dong-hee Na2023-05-141-1/+2
* GH-71383: IDLE - Document testing subsets of modules (#104463)Terry Jan Reedy2023-05-133-20/+29
* gh-104454: Fix refleak in AttributeError_reduce (#104455)Charles Machalow2023-05-131-1/+3
* gh-75710: IDLE - add docstrings and comments to editor module (#104446)Terry Jan Reedy2023-05-131-25/+102
* gh-91896: Revert some very noisy DeprecationWarnings for `ByteString` (#104424)Alex Waygood2023-05-137-79/+19
* Add a mention of PYTHONBREAKPOINT to breakpoint() docs (#104430)Ned Batchelder2023-05-131-0/+7
* gh-99836: IDLE - update news.txt for 3.12 (#104444)Terry Jan Reedy2023-05-131-2/+13
* gh-104404: fix crasher with nested comprehensions plus lambdas (#104442)Carl Meyer2023-05-122-7/+22
* GH-104405: Add missing PEP 523 checks (GH-104406)Brandt Bucher2023-05-126-421/+506
* GH-94841: Fix usage of Py_ALWAYS_INLINE (GH-104409)Brandt Bucher2023-05-121-1/+1
* gh-103333: Pickle the keyword attributes of AttributeError (#103352)Charles Machalow2023-05-123-28/+78
* gh-103204: `http.server` - Enforce that HTTP version numbers must consist onl...Ben Kallus2023-05-123-0/+28
* gh-103857: Update deprecation stacktrace to point to calling line (#104431)Hugo van Kemenade2023-05-122-2/+3
* GH-86275: Run hypothesis tests in parallel (#104427)Paul Ganssle2023-05-121-0/+2
* gh-86275: Fix install of new _hypothesis_stubs directory (#104425)Jelle Zijlstra2023-05-121-0/+1
* gh-91896: Fixup some docs issues following ByteString deprecation (#104422)Alex Waygood2023-05-122-1/+7
* GH-104371: check return value of calling `mv.release` (#104417)Kumar Aditya2023-05-121-1/+7
* gh-104415: Fix refleak tests for `typing.ByteString` deprecation (#104416)Nikita Sobolev2023-05-121-0/+9
* GH-86275: Implementation of hypothesis stubs for property-based tests, with z...Paul Ganssle2023-05-129-1/+719
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-1216-158/+252
* gh-93649: Split gc- and allocation tests from _testcapimodule.c (GH-104403)Jurica Bradarić2023-05-126-327/+353
* gh-104389: Add 'unused' keyword to Argument Clinic C converters (#104390)Erlend E. Aasland2023-05-124-1/+62
* gh-101819: Prepare _io._IOBase for module state (#104386)Erlend E. Aasland2023-05-124-11/+21
* gh-104413: Fix refleak when super attribute throws AttributeError (#104414)Jelle Zijlstra2023-05-122-114/+116
* Fix refleak in `super_descr_get` (#104408)Brandt Bucher2023-05-121-1/+3
* gh-87526: Remove dead initialization from _zoneinfo parse_abbr() (#24700)Alex Henrie2023-05-121-1/+1
* gh-91896: Improve visibility of `ByteString` deprecation warnings (#104294)Alex Waygood2023-05-115-12/+85
* gh-104371: Fix calls to `__release_buffer__` while an exception is active (#1...Jelle Zijlstra2023-05-122-2/+25
* gh-104377: fix cell in comprehension that is free in outer scope (#104394)Carl Meyer2023-05-112-7/+67
* gh-104392: Remove _paramspec_tvars from typing (#104393)Jelle Zijlstra2023-05-112-13/+8
* gh-104396: uuid.py to skip platform check for emscripten and wasi (gh-104397)Jeong, YunWon2023-05-121-1/+1
* gh-99108: Refresh HACL* from upstream (#104401)Jonathan Protzenko2023-05-113-2/+11
* gh-104301: Allow leading whitespace in disambiguated pdb statements (#104342)James Gerity2023-05-115-12/+50
* gh-104057: Fix direct invocation of test_support (GH-104069)Kirill Podoprigora2023-05-111-1/+1
* gh-87729: improve hit rate of LOAD_SUPER_ATTR specialization (#104270)Carl Meyer2023-05-1113-352/+374
* gh-101819: Fix inverted debug preprocessor check in winconsoleio.c (#104388)Erlend E. Aasland2023-05-111-1/+1
* gh-87849: fix SEND specialization family definition (GH-104268)Carl Meyer2023-05-113-176/+177
* gh-101819: Adapt _io.IOBase.seek and _io.IOBase.truncate to Argument Clinic (...Erlend E. Aasland2023-05-112-22/+135
* gh-101819: Adapt _io._Buffered* methods to Argument Clinic (#104367)Erlend E. Aasland2023-05-112-56/+328
* gh-101819: Refactor `_io` futher in preparation for module isolation (#104369)Erlend E. Aasland2023-05-115-116/+268
* gh-101819: Adapt _io.TextIOBase methods to Argument Clinic (#104383)Erlend E. Aasland2023-05-112-40/+233
* gh-101117: Improve accuracy of sqlite3.Cursor.rowcount docs (#104287)Erlend E. Aasland2023-05-111-1/+4
* GH-92184: Convert os.altsep to '/' in filenames when creating ZipInfo objects...Carey Metcalfe2023-05-112-0/+5
* gh-104357: fix inlined comprehensions that close over iteration var (#104368)Carl Meyer2023-05-102-6/+23
* GH-90208: Suppress OSError exceptions from `pathlib.Path.glob()` (GH-104141)Barney Gale2023-05-113-46/+29
* GH-102181: Improve specialization stats for SEND (GH-102182)penguin_wwy2023-05-104-44/+49
* gh-103000: Optimise `dataclasses.asdict` for the common case (#104364)Alex Waygood2023-05-102-5/+14
* gh-103538: Remove unused TK_AQUA code (GH-103539)Christopher Chavez2023-05-103-64/+3