summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171)Victor Stinner2022-02-2311-96/+104
* bpo-45885: Don't un-adapt `COMPARE_OP` when collecting stats (GH-31516)Brandt Bucher2022-02-232-2/+9
* bpo-46329: Fix test failure when `Py_STATS` is enabled (GH-31511)Brandt Bucher2022-02-232-2/+2
* bpo-46757: Add a test to verify dataclass's __post_init__ isn't being automat...Eric V. Smith2022-02-231-0/+59
* Minor fixes to C API docs (GH-31501)Jelle Zijlstra2022-02-234-24/+28
* bpo-46794: Bump up the libexpat version into 2.4.6 (GH-31487)Dong-hee Na2022-02-236-62/+133
* bpo-46522: fix concurrent.futures and io AttributeError messages (GH-30887)Thomas Grainger2022-02-234-3/+4
* bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...Eric Snow2022-02-2322-526/+192
* Inherit asyncio proactor datagram transport from asyncio.DatagramTransport (#...Andrew Svetlov2022-02-223-1/+5
* bpo-45459: Rename buffer.h to pybuffer.h (#31201)Victor Stinner2022-02-227-4/+13
* bpo-46659: Deprecate locale.getdefaultlocale() (GH-31206)Victor Stinner2022-02-225-1/+20
* bpo-46659: Fix the MBCS codec alias on Windows (GH-31218)Victor Stinner2022-02-222-11/+17
* bpo-46827: pass sock.type to getaddrinfo in sock_connect (GH-31499)Thomas Grainger2022-02-223-1/+22
* bpo-46729: add number of sub-exceptions in str() of BaseExceptionGroup (GH-31...Irit Katriel2022-02-224-29/+100
* bpo-20923 : [doc] Explain ConfigParser 'valid section name' and .SECTCRE (GH...vidhya2022-02-221-0/+3
* bpo-36557: Updated wording for using/windows (GH-31457)slateny2022-02-221-2/+2
* bpo-46725: Document starred expressions in for statements (GH-31481)Pablo Galindo Salgado2022-02-223-8/+22
* Fix reporting of specialization stats. (GH-31503)Mark Shannon2022-02-222-1/+3
* bpo-46822: Increase timeout for test_create_server_ssl_over_ssl to match unde...Steve Dower2022-02-221-1/+1
* Remove pair-counts from specialization stats. (GH-31500)Mark Shannon2022-02-221-2/+5
* Move call specializations from CALL to PRECALL. (GH-31496)Mark Shannon2022-02-226-206/+311
* dict: Add dk_log2_index_bytes (GH-31439)Inada Naoki2022-02-222-24/+31
* bpo-46820: Fix a SyntaxError in a numeric literal followed by "not in" (GH-31...Serhiy Storchaka2022-02-223-0/+15
* bpo-46606: Reduce stack usage of getgroups and setgroups (GH-31073)Inada Naoki2022-02-221-56/+23
* bpo-45390: Propagate CancelledError's message from cancelled task to its awai...Andrew Svetlov2022-02-215-39/+79
* bpo-46329: Streamline calling sequence a bit. (GH-31465)Mark Shannon2022-02-217-178/+218
* fix __bool__ docstring (GH-31301)Jelle Zijlstra2022-02-212-1/+3
* bpo-46811: Make test suite support Expat >=2.4.5 (GH-31453)Sebastian Pipping2022-02-213-8/+16
* bpo-46541: Remove usage of _Py_IDENTIFIER from pyexpat (GH-31468)Dong-hee Na2022-02-211-4/+8
* bpo-46796: Simplify handling of removed parameter "loop" in asyncio (GH-31431)Serhiy Storchaka2022-02-214-24/+9
* bpo-46232: Fix parsing of certs with bit string in DN (GH-30351)Christian Heimes2022-02-202-7/+21
* bpo-39327: Close file descriptors as soon as possible in shutil.rmtree (GH-31...Lital Natan2022-02-203-2/+13
* replace `self` param with more appropriate `cls` in classmethods (GH-31402)Josh Smith2022-02-201-2/+2
* Raise TypeError if SSLSocket is passed to asyncio transport-based methods (GH...Andrew Svetlov2022-02-203-10/+22
* bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)Nikita Sobolev2022-02-203-1/+17
* bpo-46752: Uniform TaskGroup.__repr__ (GH-31409)Andrew Svetlov2022-02-201-8/+10
* Improve discussion about how __getattr__ is invoked. (GH-31435)Raymond Hettinger2022-02-201-9/+7
* bpo-46066: Check DeprecationWarning in test_typing (GH-31428)Jelle Zijlstra2022-02-201-4/+5