summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* gh-95950: Add a test for both `csv.Dialect` and `kwargs` (GH-95951)Miss Islington (bot)2022-08-291-0/+28
* [3.10] gh-89047: Fix msecs computation so you never end up with 1000 msecs. (...Miss Islington (bot)2022-08-271-0/+8
* gh-95243: Mitigate the race condition in testSockName (GH-96173)Miss Islington (bot)2022-08-251-2/+13
* [3.10] GH-96071: add regression test for GH-96071 (GH-96137) (#96205)Kumar Aditya2022-08-231-0/+14
* gh-96175: add missing self._localName assignment in `xml.dom.minidom.Attr` (G...Miss Islington (bot)2022-08-231-1/+15
* [3.10] GH--93592: Fix frame chain when throwing exceptions into coroutines (G...Kristján Valur Jónsson2022-08-231-0/+24
* [3.10] gh-94996: Disallow lambda pos only params with feature_version < (3, 8...Shantanu2022-08-121-0/+7
* [3.10] gh-94996: Disallow parsing pos only params with feature_version < (3, ...Shantanu2022-08-122-2/+10
* gh-95349: Hide a Distutils Warning Filter for test_check_c_globals (GH-95837)Miss Islington (bot)2022-08-111-1/+6
* gh-95605: Fix `float(s)` error message when `s` contains only whitespace (GH-...Miss Islington (bot)2022-08-101-0/+4
* [3.10] gh-91838: Resolve more HTTP links which redirect to HTTPS (GH-95650). ...Serhiy Storchaka2022-08-081-1/+1
* gh-95376: Add test for names containing null (GH-GH-5394) (GH-95747)Miss Islington (bot)2022-08-061-0/+2
* gh-95395: Add argument type error test (GH-95412) (GH-95745)Miss Islington (bot)2022-08-061-1/+3
* Fix typo in test_dataclasses.py (gh-95735)Miss Islington (bot)2022-08-061-2/+2
* gh-91838: Resolve HTTP links which redirect to HTTPS (GH-95642)Miss Islington (bot)2022-08-041-1/+1
* gh-95597: Fix typo in Lib directory files (GH-95599)Miss Islington (bot)2022-08-031-1/+1
* gh-94938: Fix test (GH-95396)Miss Islington (bot)2022-07-301-5/+0
* [3.10] gh-95166: cancel map waited on future on timeout (GH-95169) (GH-95375)Łukasz Langa2022-07-291-0/+27
* [3.10] gh-94938: Fix errror detection of unexpected keyword arguments (GH-949...Serhiy Storchaka2022-07-282-0/+52
* gh-95280: Fix test_get_ciphers on systems without RSA key exchange (GH-95282)Miss Islington (bot)2022-07-271-2/+14
* gh-95291: Use import helper to improve sqlite3 audit tests (GH-95292)Miss Islington (bot)2022-07-261-4/+1
* gh-95087: Fix IndexError in parsing invalid date in the email module (GH-95201)Miss Islington (bot)2022-07-252-23/+55
* gh-95212: make multiprocessing test case parallel-safe (GH-95213)Miss Islington (bot)2022-07-251-1/+1
* gh-93157: Fix fileinput didn't support `errors` in `inplace` mode (GH-95128)Miss Islington (bot)2022-07-241-0/+10
* [3.10] gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-...Miss Islington (bot)2022-07-191-3/+13
* [3.10] gh-94998: Remove incorrectly backported Lib/test/test_sqlite3 director...Erlend Egeberg Aasland2022-07-191-1892/+0
* GH-91153: Handle mutating __index__ methods in bytearray item assignment (GH-...Miss Islington (bot)2022-07-191-0/+17
* [3.10] gh-94949: Disallow parsing parenthesised ctx mgr with old feature_vers...Shantanu2022-07-191-0/+8
* test_concurrent_futures: Fix unneeded/confusing format call (GH-93119)Miss Islington (bot)2022-07-191-1/+1
* [3.10] gh-94947: Disallow parsing walrus with feature_version < (3, 8) (GH-94...Shantanu2022-07-181-0/+5
* gh-94821: Fix autobind of empty unix domain address (GH-94826)Miss Islington (bot)2022-07-171-0/+19
* gh-94864: Fix PyArg_Parse* with deprecated format units "u" and "Z" (GH-94902)Miss Islington (bot)2022-07-171-0/+13
* gh-94869: Fix the location in some expressions for multi-line f-string ast no...Miss Islington (bot)2022-07-161-2/+31
* [3.10] GH-94736: mark SemLock test as linux only (GH-94750) (#94753)Miss Islington (bot)2022-07-111-0/+1
* bpo-45924: Fix asyncio incorrect traceback when future's exception is raised ...Miss Islington (bot)2022-07-111-1/+30
* GH-94736: Fix _multiprocessing.SemLock subclassing (GH-94738)Miss Islington (bot)2022-07-111-0/+11
* [3.10] GH-94329: Don't raise on excessive stack consumption (GH-94421) (#94448)Mark Shannon2022-07-111-0/+6
* [3.10] gh-94430: Allow params named `module` or `self` with custom C names in...Erlend Egeberg Aasland2022-07-071-0/+41
* [3.10] gh-94510: Raise on re-entrant calls to sys.setprofile and syssettrace ...Pablo Galindo Salgado2022-07-052-0/+78
* [3.10] gh-91330: Tests and docs for dataclass descriptor-typed fields (GH-944...Łukasz Langa2022-07-051-0/+109
* [3.10] bpo-46755: Don't log stack info twice in QueueHandler (GH-31355) (GH-9...Vinay Sajip2022-07-051-1/+3
* [3.10] gh-93975: Provide nicer error reporting from subprocesses in test_venv...Jason R. Coombs2022-07-011-14/+30
* gh-84753: Make inspect.iscoroutinefunction() work with AsyncMock (GH-94050) (...Miss Islington (bot)2022-06-302-0/+15
* [3.10] GH-77403: Fix tests which fail when PYTHONUSERBASE is not normalized (...Miss Islington (bot)2022-06-302-3/+3
* gh-92336: linecache.getline should not raise exceptions on decoding errors (G...Miss Islington (bot)2022-06-301-6/+6
* [3.10] GH-89988: Fix memory leak in pickle.Pickler dispatch_table lookup (GH-...Kumar Aditya2022-06-281-0/+23
* gh-94208: Add more TLS version/protocol checks for FreeBSD (GH-94347)Miss Islington (bot)2022-06-281-27/+33
* [3.10] gh-94192: Fix error for dictionary literals with invalid expression as...wookie1842022-06-271-3/+13
* GH-94254: Make _struct module types immutable (GH-94269)Miss Islington (bot)2022-06-261-0/+12
* Run Tools/scripts/reindent.py (#94225) (#94291)Victor Stinner2022-06-261-1/+0