summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-43327: Fix the docs for PyImport_ImportFrozenModuleObject() (#24659)Zackery Spytz2022-11-271-2/+2
* GH-66285: fix forking in asyncio (#99769)Kumar Aditya2022-11-273-0/+110
* bpo-45975: Simplify some while-loops with walrus operator (GH-29347)Nick Drozd2022-11-2628-153/+41
* gh-89682: [doc] reword docstring of __contains__ to clarify that it returns a...Ivan Savov2022-11-262-1/+2
* gh-88330: Add more detail about what is a resource. (#99801)Jason R. Coombs2022-11-262-3/+12
* gh-98108: Add limited pickleability to zipfile.Path (GH-98109)Jason R. Coombs2022-11-266-22/+110
* gh-99795: Fix typo in importlib.resources.abc (GH-99796)busywhitespace2022-11-261-1/+1
* Fix zipfile packaging after GH-98103 (GH-99797)Jason R. Coombs2022-11-262-0/+9
* gh-91078: Return None from TarFile.next when the tarfile is empty (GH-91850)Sam Ezeh2022-11-263-0/+15
* gh-98098: Create packages from zipfile and test_zipfile (gh-98103)Jason R. Coombs2022-11-268-798/+834
* gh-97966: Restore prior expectation that uname_result._fields and ._asdict wo...Jason R. Coombs2022-11-263-2/+14
* gh-99086: Fix -Wstrict-prototypes, -Wimplicit-function-declaration warnings i...Sam James2022-11-263-48/+57
* gh-99502: mention bytes-like objects as input in `secrets.compare_digest` (GH...Nikita Sobolev2022-11-261-1/+3
* GH-95896: posixmodule.c: fix osdefs.h inclusion to not depend on compiler (#9...TheShermanTanker2022-11-261-11/+3
* Fix typo in `__match_args__` doc (#99785)Terry Jan Reedy2022-11-261-1/+1
* gh-98724: Fix warnings on Py_SETREF() usage (#99781)Victor Stinner2022-11-253-3/+3
* gh-99029: Fix handling of `PureWindowsPath('C:\<blah>').relative_to('C:')` (G...Barney Gale2022-11-253-52/+20
* gh-64019: Have attribute table in `inspect` docs link to module attributes in...Stanley2022-11-251-6/+1
* Fix typo on inline comment for email.generator (GH-98210)Gary Donovan2022-11-251-1/+1
* bpo-40882: Fix a memory leak in SharedMemory on Windows (GH-20684)Zackery Spytz2022-11-254-2/+58
* gh-96168: Add sqlite3 row factory how-to (#99507)Erlend E. Aasland2022-11-251-41/+119
* bpo-38031: Fix a possible assertion failure in _io.FileIO() (#GH-5688)Zackery Spytz2022-11-253-1/+15
* bpo-41260: C impl of datetime.date.strftime() takes different keyword arg (GH...Zackery Spytz2022-11-253-2/+7
* Revert "gh-98724: Fix Py_CLEAR() macro side effects" (#99737)Victor Stinner2022-11-245-172/+29
* gh-64490: Fix bugs in argument clinic varargs processing (#32092)colorfulappl2022-11-2411-11/+612
* GH-66285: Revert "fix forking in asyncio" (#99756)Kumar Aditya2022-11-243-109/+0
* Fix rendering of audioop license in Doc/license.rst (GH-99752)Zachary Ware2022-11-241-0/+4
* GH-66285: skip asyncio fork tests for platforms without md5 hash (#99745)Kumar Aditya2022-11-241-0/+4
* GH-79033: Fix asyncio.Server.wait_closed() (#98582)Guido van Rossum2022-11-244-2/+30
* gh-99240: Fix double-free bug in Argument Clinic str_converter generated code...colorfulappl2022-11-246-25/+201
* gh-64490: Fix refcount error when arguments are packed to tuple in argument c...colorfulappl2022-11-246-4/+121
* gh-99708: fix bug where compiler crashes on if expression with an empty body ...Irit Katriel2022-11-243-3/+29
* gh-94808: [coverage] Add an asynchronous generator test where the generator i...zhanpon2022-11-241-0/+13
* gh-98872: Fix a possible resource leak in Python 3.11.0 (GH-99047)SQLPATCH2022-11-242-0/+2
* gh-99706: unicodeobject: Fix padding in `PyASCIIObject.state` (GH-99707)David Hewitt2022-11-241-1/+1
* add Kumar Aditya as `asyncio` codeowner (GH-99744)Kumar Aditya2022-11-241-1/+1
* GH-66285: fix forking in `asyncio` (#99539)Kumar Aditya2022-11-243-0/+105
* gh-96828: Add an `ssl.OP_ENABLE_KTLS` option (GH-96830)Illia Volochii2022-11-243-0/+21
* closes gh-99508: fix `TypeError` in `Lib/importlib/_bootstrap_external.py` (G...Nikita Sobolev2022-11-232-1/+4
* Upload NEWS file as artifact (#30419)Hugo van Kemenade2022-11-231-1/+6
* Use faster APIs to calculate paths at startup for Store packaged Python on Wi...Steve Dower2022-11-232-25/+51
* gh-79315: Add Include/cpython/memoryobject.h header (#99723)Victor Stinner2022-11-235-41/+50
* gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)Victor Stinner2022-11-2322-87/+44
* gh-99619: fix error in documentation of ExceptionGroup.derive() (GH-99621)Irit Katriel2022-11-231-6/+27
* GH-95283: Add note about compilers in Mac/README.txt (#99506)Ronald Oussoren2022-11-231-0/+13
* GH-98831: Add `macro` and `op` and their implementation to DSL (#99495)Guido van Rossum2022-11-237-135/+325
* gh-99300: Replace Py_INCREF() with Py_NewRef() in _elementtree.c (#99696)Victor Stinner2022-11-221-69/+36
* gh-99650 : Updated argparse docs (GH-99653)ram vikram singh2022-11-221-1/+1
* gh-88226: Emit TARGET labels in Python/ceval.c when debugging, even if comput...Skip Montanaro2022-11-222-4/+24
* gh-99146 struct module documentation should have more predictable examples/wa...Skip Montanaro2022-11-221-76/+206