summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-46786: Make ElementTree write the HTML tags embed, source, track, wbr as ...Jannis Vajen2022-02-272-9/+6
* 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-261-6/+2
* bpo-46748: Fix ctypes test_frozentable() (GH-31600)Kumar Aditya2022-02-261-1/+1
* Taskgroup tweaks (GH-31559)Tin Tvrtković2022-02-262-34/+42
* 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-263-1/+51
* bpo-46852: Remove the float.__set_format__() method (GH-31585)Victor Stinner2022-02-252-71/+1
* bpo-46857: Fix test_embed.test_no_memleak() on Windows (GH-31589)Victor Stinner2022-02-251-4/+10
* bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)Brandt Bucher2022-02-256-143/+164
* bpo-46756: Fix authorization check in urllib.request (GH-31353)Serhiy Storchaka2022-02-252-8/+25
* bpo-46820: Refactor tests for ambiguous end of numerical literal (GH-31494)Serhiy Storchaka2022-02-251-89/+25
* bpo-46623: Skip two test_zlib tests on s390x (GH-31096)Victor Stinner2022-02-241-0/+32
* bpo-1635741: test_embed cheks that Python does not leak (GH-31555)Victor Stinner2022-02-242-1/+22
* bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)Mark Shannon2022-02-241-1/+2
* bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH...Dennis Sweeney2022-02-241-0/+1
* bpo-46659: Enhance LocaleTextCalendar for C locale (GH-31214)Victor Stinner2022-02-241-3/+16
* bpo-46771: Implement task cancel requests counter (GH-31513)Tin Tvrtković2022-02-241-9/+21
* closes bpo-46736: SimpleHTTPRequestHandler now uses HTML5. (GH-31533)Dong-hee Na2022-02-231-12/+10
* bpo-46757: Add a test to verify dataclass's __post_init__ isn't being automat...Eric V. Smith2022-02-231-0/+59
* bpo-46522: fix concurrent.futures and io AttributeError messages (GH-30887)Thomas Grainger2022-02-233-3/+3
* Inherit asyncio proactor datagram transport from asyncio.DatagramTransport (#...Andrew Svetlov2022-02-222-1/+3
* bpo-46659: Deprecate locale.getdefaultlocale() (GH-31206)Victor Stinner2022-02-222-1/+8
* 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-222-1/+21
* bpo-46729: add number of sub-exceptions in str() of BaseExceptionGroup (GH-31...Irit Katriel2022-02-222-28/+93
* bpo-46725: Document starred expressions in for statements (GH-31481)Pablo Galindo Salgado2022-02-221-0/+6
* bpo-46822: Increase timeout for test_create_server_ssl_over_ssl to match unde...Steve Dower2022-02-221-1/+1
* Move call specializations from CALL to PRECALL. (GH-31496)Mark Shannon2022-02-221-13/+16
* bpo-46820: Fix a SyntaxError in a numeric literal followed by "not in" (GH-31...Serhiy Storchaka2022-02-221-0/+9
* bpo-45390: Propagate CancelledError's message from cancelled task to its awai...Andrew Svetlov2022-02-212-16/+55
* bpo-46329: Streamline calling sequence a bit. (GH-31465)Mark Shannon2022-02-212-20/+21
* bpo-46811: Make test suite support Expat >=2.4.5 (GH-31453)Sebastian Pipping2022-02-212-8/+15
* bpo-46796: Simplify handling of removed parameter "loop" in asyncio (GH-31431)Serhiy Storchaka2022-02-214-24/+9
* bpo-39327: Close file descriptors as soon as possible in shutil.rmtree (GH-31...Lital Natan2022-02-201-2/+10
* 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-202-10/+20
* bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)Nikita Sobolev2022-02-202-1/+16
* bpo-46752: Uniform TaskGroup.__repr__ (GH-31409)Andrew Svetlov2022-02-201-8/+10
* bpo-46066: Check DeprecationWarning in test_typing (GH-31428)Jelle Zijlstra2022-02-201-4/+5
* Use raw string to avoid deprecation warning (GH-31427)Dennis Sweeney2022-02-191-1/+1
* bpo-46685: improve test coverage of `Self` and `Never` in `typing` (GH-31222)Nikita Sobolev2022-02-191-1/+48
* bpo-46603: improve coverage of `typing._strip_annotations` (GH-31063)Nikita Sobolev2022-02-191-0/+9
* bpo-46571: improve `typing.no_type_check` to skip foreign objects (GH-31042)Nikita Sobolev2022-02-193-5/+126
* Reduce flakiness of taskgroups test 13 (GH-31411)Guido van Rossum2022-02-181-1/+1
* bpo-46329: Change calling sequence (again) (GH-31373)Mark Shannon2022-02-185-187/+210
* bpo-46709: check eval breaker in specialized `CALL` opcodes (GH-31404)Nikita Sobolev2022-02-181-59/+85
* bpo-46724: Fix dis support for overflow args (GH-31285)Saul Shanabrook2022-02-182-5/+39
* bpo-46752: Slight improvements to TaskGroup API (GH-31398)Guido van Rossum2022-02-182-24/+17
* Fix missing spaces in os.walk example (GH-29918)辰冢2022-02-181-2/+2