summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* gh-96357: Improve `typing.get_overloads` coverage (#96358)Nikita Sobolev2022-08-291-0/+3
* gh-95950: Add a test for both `csv.Dialect` and `kwargs` (#95951)Nikita Sobolev2022-08-291-0/+28
* gh-69142: add %:z strftime format code (gh-95983)TW2022-08-282-31/+35
* gh-90467: StreamReaderProtocol - add strong reference to created task (#96323)Kirill2022-08-271-1/+3
* gh-89047: Fix msecs computation so you never end up with 1000 msecs. (GH-96340)Vinay Sajip2022-08-272-1/+9
* gh-92007: Handle elevation errors in NTEventLogHandler more grace… (GH-96322)Vinay Sajip2022-08-271-1/+10
* fix threading.Event.isSet() docstring (#96297)Daniel Giger2022-08-271-1/+1
* gh-96280: suppress deprecation warning in test_importlib (GH-96281)Irit Katriel2022-08-261-1/+3
* GH-96172 fix unicodedata.east_asian_width being wrong on unassigned code poin...Carl Friedrich Bolz-Tereick2022-08-261-1/+19
* bpo-33587: inspect.getsource: reorder stat on file in linecache (GH-6805)Pankaj Pandey2022-08-261-3/+3
* Port regression test for issue GH-93592 (GH-96208)Kristján Valur Jónsson2022-08-261-0/+24
* gh-96276: suppress SyntaxWarning in test_compile (GH-96277)Irit Katriel2022-08-251-1/+4
* gh-96272: Replace `test_source_encoding`'s `test_pep263` with `test_import_en...Michael Droettboom2022-08-252-15/+10
* gh-92445 Improve interaction between nargs="*" and choices() (GH-92565)Harry2022-08-252-1/+10
* gh-76728: Coerce DictReader and DictWriter fieldnames argument to a list (GH-...Sam Ezeh2022-08-252-0/+32
* gh-95243: Mitigate the race condition in testSockName (#96173)Ross Burton2022-08-251-2/+13
* GH-93503: Add thread-specific APIs to set profiling and tracing functions in ...Pablo Galindo Salgado2022-08-242-3/+81
* gh-96021: Explicitly close the IsolatedAsyncioTestCase runner in tests (GH-96...Serhiy Storchaka2022-08-241-2/+7
* gh-93678: add _testinternalcapi.optimize_cfg() and test utils for compiler op...Irit Katriel2022-08-242-1/+170
* GH-96145: Add AttrDict to JSON module for use with object_hook (#96146)Raymond Hettinger2022-08-233-1/+197
* gh-96189: Fix test_invalid_utf8 on a number of build bots (GH-96190)Michael Droettboom2022-08-231-43/+43
* gh-96175: add missing self._localName assignment in `xml.dom.minidom.Attr` (#...Kevin Kirsche2022-08-232-1/+17
* gh-96197: Add `del sys.breakpointhook` behavior test (gh-96198)Jeong YunWon2022-08-231-0/+5
* gh-96159: Fix significant performance degradation in logging.TimedRotat… (G...Duncan Grisby2022-08-231-3/+7
* GH-96071: add regression test for #96071 (GH-96137)Kumar Aditya2022-08-221-0/+15
* gh-96076: Change test_launcher to use non-admin location for py.ini (GH-96091)Terry Jan Reedy2022-08-221-3/+5
* gh-96125: Fix sys.thread_info.name on pthread platforms (GH-96126)Christian Heimes2022-08-191-0/+8
* GH-90997: Wrap yield from/await in a virtual try/except StopIteration (GH-96010)Brandt Bucher2022-08-193-8/+14
* gh-95463: Remove backwards incompatible change regarding the _MASK_UTF_FILENA...Pablo Galindo Salgado2022-08-181-1/+1
* GH-95861: Add support for Spearman's rank correlation coefficient (GH-95863)Raymond Hettinger2022-08-182-7/+78
* gh-95813: Improve HTMLParser from the view of inheritance (#95874)Dong-hee Na2022-08-182-1/+16
* gh-95913: make the new internal classes pdb.ModuleTarget/ScriptTarget private...Irit Katriel2022-08-182-5/+5
* GH-95589: Dont crash when subclassing extension classes with multiple inherit...Mark Shannon2022-08-171-11/+33
* gh-95991: Add some infrastructure for testing Limited API in _testcapi (GH-95...Petr Viktorin2022-08-172-4/+12
* GH-93911: Specialize `LOAD_ATTR` for custom `__getattribute__` (GH-93988)Ken Jin2022-08-171-0/+1
* gh-95736: Fix event loop creation in IsolatedAsyncioTestCase (GH-96033)Serhiy Storchaka2022-08-171-4/+4
* gh-96005: FreeBSD has ENOTCAPABLE, too (GH-96034)Christian Heimes2022-08-171-2/+4
* GH-95704: Don't suppress errors from tasks when TG is cancelled (#95761)Guido van Rossum2022-08-172-28/+33
* gh-94823: Improve coverage in tokenizer.c:valid_utf8 (GH-94856)Michael Droettboom2022-08-161-0/+61
* GH-95736: fix IsolatedAsyncioTestCase to initialize Runner before calling set...Kumar Aditya2022-08-162-0/+19
* GH-95245: Move weakreflist into the pre-header. (GH-95996)Mark Shannon2022-08-161-0/+31
* gh-78143: IDLE - fix settings dialog page label. (#96009)Terry Jan Reedy2022-08-151-1/+1
* GH-94808: Test __build_class__ inside non-dict __builtins__ (GH-95932)Michael Droettboom2022-08-151-5/+9
* GH-95899: fix asyncio.Runner to call set_event_loop only once (#95900)Kumar Aditya2022-08-152-3/+19
* gh-95231: Disable md5 & crypt modules if FIPS is enabled (GH-94742)Shreenidhi Shedi2022-08-151-1/+1
* GH-95707: Fix uses of `Py_TPFLAGS_MANAGED_DICT` (GH-95854)Mark Shannon2022-08-152-1/+25
* gh-95853: Address wasm build and test issues (GH-95985)Christian Heimes2022-08-151-1/+2
* bpo-40222: Mark exception table function in the dis module as private (#95961)Pablo Galindo Salgado2022-08-141-8/+8
* gh-95853: Add script to automate WASM build (GH-95828)Christian Heimes2022-08-132-1/+13
* gh-90928: Improve static initialization of keywords tuple in AC (#95907)Erlend E. Aasland2022-08-131-432/+192