summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-46786: Make ElementTree write the HTML tags embed, source, track, wbr as ...Jannis Vajen2022-02-273-9/+8
* bpo-46852: Restore test_getformat() test (GH-31601)Victor Stinner2022-02-271-3/+11
* bpo-46857: Fix refleak in OSError INIT_ALIAS() (GH-31594)Victor Stinner2022-02-263-18/+7
* bpo-46748: Fix ctypes test_frozentable() (GH-31600)Kumar Aditya2022-02-261-1/+1
* bpo-46606: os.getgroups() doesn't overallocate (GH-31569)Victor Stinner2022-02-261-32/+25
* [doc] Add a note in howto/logging.rst about "do not log to root logger in lib...Yuxin Wu2022-02-261-0/+7
* Propagate errors (however unlikely) from _Py_Deepfreeze_Init() (GH-31596)Kumar Aditya2022-02-267-13/+25
* Taskgroup tweaks (GH-31559)Tin Tvrtković2022-02-262-34/+42
* bpo-44011: Document ssl_shutdown_timeout added by revisited asyncio SSL imple...Kumar Aditya2022-02-261-5/+55
* bpo-38415: Remove redundant AsyncContextDecorator.__call__ override from _Asy...Thomas Grainger2022-02-261-8/+0
* bpo-45735: Promise the long-time truth that `args=list` works (GH-30982)Charlie Zhao2022-02-266-3/+82
* bpo-46852: Remove the float.__set_format__() method (GH-31585)Victor Stinner2022-02-257-214/+15
* bpo-46816: Remove declarations for non-__STDC__ compilers (GH-31466)Oleg Iarygin2022-02-252-15/+0
* bpo-46712: Share global string identifiers in deepfreeze (GH-31261)Kumar Aditya2022-02-253-6/+14
* bpo-46857: Fix test_embed.test_no_memleak() on Windows (GH-31589)Victor Stinner2022-02-251-4/+10
* bpo-26897: Clarify Popen stdin, stdout, stderr file object docs (GH-30231)Kumar Aditya2022-02-251-14/+16
* bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)Victor Stinner2022-02-2515-138/+138
* bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580)Victor Stinner2022-02-254-3/+3
* bpo-45316: Move private functions to internal C API (GH-31579)Victor Stinner2022-02-257-16/+18
* Update dict/OrderedDict differences with code equivalents. (GH-31563)Raymond Hettinger2022-02-251-6/+23
* bpo-45316: Move private PyDict functions to internal C API (GH-31577)Victor Stinner2022-02-252-17/+19
* bpo-45316: Move private PyCode C API to internal C API (GH-31576)Victor Stinner2022-02-254-49/+56
* bpo-46808: remove NEXT_BLOCK() from compile.c (GH-31448)Irit Katriel2022-02-252-63/+73
* bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)Brandt Bucher2022-02-2519-351/+429
* bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530)Victor Stinner2022-02-255-49/+58
* bpo-1635741: Fix winreg reference leaks (GH-31560)Victor Stinner2022-02-252-4/+8
* bpo-46756: Fix authorization check in urllib.request (GH-31353)Serhiy Storchaka2022-02-253-8/+30
* bpo-34429: Noted TemporaryFile behavior on non-Posix/non-Cygwin systems (GH-3...slateny2022-02-251-0/+3
* bpo-46748: Don't import <stdbool.h> in public headers (GH-31553)Petr Viktorin2022-02-256-6/+11
* bpo-46820: Refactor tests for ambiguous end of numerical literal (GH-31494)Serhiy Storchaka2022-02-251-89/+25
* bpo-46606: Remove redundant +1. (GH-31561)Inada Naoki2022-02-251-1/+1
* bpo-46852: Rename float.__set_format__() to float.__setformat__() (GH-31558)Victor Stinner2022-02-253-17/+20
* bpo-46656: Remove Py_NO_NAN macro (GH-31160)Victor Stinner2022-02-259-28/+16
* bpo-46656: Building Python now requires a C11 compiler (GH-31557)Victor Stinner2022-02-252-0/+5
* bpo-46623: Skip two test_zlib tests on s390x (GH-31096)Victor Stinner2022-02-242-0/+34
* bpo-1635741: test_embed cheks that Python does not leak (GH-31555)Victor Stinner2022-02-242-1/+22
* bpo-45898: Remove duplicate symbols from _ctypes/cfield.c (GH-29791)Christian Heimes2022-02-243-125/+106
* bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)Mark Shannon2022-02-247-66/+143
* bpo-46430: Fix memory leak in interned strings of deep-frozen modules (GH-31549)Kumar Aditya2022-02-246-6/+21
* bpo-45459: C API uses type names rather than structure names (GH-31528)Victor Stinner2022-02-2423-75/+69
* bpo-45459: Add pytypedefs.h header file (GH-31527)Victor Stinner2022-02-2416-40/+44
* bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH...Dennis Sweeney2022-02-246-4/+91
* bpo-46659: Enhance LocaleTextCalendar for C locale (GH-31214)Victor Stinner2022-02-242-6/+20
* Add (undocumented) _co_quickened attribute for code object. (GH-31552)Mark Shannon2022-02-241-2/+13
* bpo-46771: Implement task cancel requests counter (GH-31513)Tin Tvrtković2022-02-243-46/+48
* build(deps): bump actions/upload-artifact from 2.2.4 to 2.3.1 (GH-30325)dependabot[bot]2022-02-231-1/+1
* bpo-40421: What's New in Python 3.11: PyFrameObject.f_lasti (GH-31536)Victor Stinner2022-02-231-0/+2
* bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)Brandt Bucher2022-02-234-43/+36
* bpo-40421: Fix PyFrame_GetCode() documentation (GH-31535)Victor Stinner2022-02-231-2/+2
* closes bpo-46736: SimpleHTTPRequestHandler now uses HTML5. (GH-31533)Dong-hee Na2022-02-232-12/+12