summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-95087: Fix IndexError in parsing invalid date in the email module (GH-95201)Serhiy Storchaka2022-07-253-23/+59
* gh-95212: make multiprocessing test case parallel-safe (GH-95213)Christian Heimes2022-07-251-1/+1
* gh-95218: Move tests for importlib.resources into test_importlib.resources. (...Jason R. Coombs2022-07-2532-9/+9
* gh-95051: ensure that timeouts scheduled with `asyncio.Timeout` that have alr...Thomas Grainger2022-07-242-4/+28
* log2() is faster than log() (#95214)Raymond Hettinger2022-07-241-3/+3
* gh-95185: Check recursion depth in the AST constructor (#95186)Pablo Galindo Salgado2022-07-241-0/+21
* gh-95199: upgrade bundled setuptools to 63.2.0 (gh-95200)Stéphane Bidoul2022-07-243-1/+1
* gh-95194: upgrade bundled pip to 22.2 (gh-95195)Stéphane Bidoul2022-07-243-1/+1
* gh-95174: Handle missing waitpid and gethostbyname in WASI (GH-95181)Christian Heimes2022-07-242-6/+19
* gh-93157: Fix fileinput didn't support `errors` in `inplace` mode (GH-95128)Inada Naoki2022-07-242-3/+16
* Compute v only when needed. (#95183)Raymond Hettinger2022-07-231-1/+1
* gh-90385: Add skip_unless_symlink decorator to test_walk_symlink_location (GH...Christian Heimes2022-07-231-0/+1
* gh-90473: Fix more tests on platforms without umask (GH-95164)Christian Heimes2022-07-233-2/+18
* gh-95132: Correctly relay *args and **kwds from sqlite3.connect to factory (#...Erlend Egeberg Aasland2022-07-231-0/+20
* gh-90385: Add `pathlib.Path.walk()` method (GH-92517)Stanislav Zmiev2022-07-223-1/+241
* GH-94438: Handle extended arguments and conditional pops in mark_stacks (GH-9...Brandt Bucher2022-07-221-0/+36
* GH-94036: Fix more attribute location quirks (GH-95028)Brandt Bucher2022-07-221-0/+60
* GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121)Brandt Bucher2022-07-221-1/+1
* Fix typo in PROTOCOL_TO_TLS_VERSION in test_ssl (GH-95119)David Benjamin2022-07-221-1/+1
* gh-95105: Return Iterator from wsgiref.types.InputStream.__iter__ (#95106)Shantanu2022-07-211-2/+2
* gh-95010: Fix asyncio GenericWatcherTests.test_create_subprocess_fails_with_i...Thomas Grainger2022-07-211-20/+26
* gh-82116: add comment explaining use of `list(scandir_it)` in pathlib. (GH-94...Barney Gale2022-07-201-0/+4
* GH-91409: Don't overwrite valid locations with NOP locations (GH-95067)Brandt Bucher2022-07-201-0/+38
* gh-90016: Deprecate default sqlite3 adapters and converters (#94276)Erlend Egeberg Aasland2022-07-203-11/+35
* gh-94998: Remove redundant condition in test_sqlite3/__main__.py (#95052)Erlend Egeberg Aasland2022-07-201-2/+1
* gh-94844: Add pathlib support to shutil archive management (GH-94846)Oleg Iarygin2022-07-201-0/+2
* gh-90654: Remove unneeded blank line (#95044)Terry Jan Reedy2022-07-201-1/+0
* gh-90654: Add item missing from idlelib/NEWS.txt (#95038)Terry Jan Reedy2022-07-201-0/+2
* gh-93370: Don't print deprecated pysqlite version in test_sqlite3 (#95017)Erlend Egeberg Aasland2022-07-191-3/+1
* GH-91153: Handle mutating __index__ methods in bytearray item assignment (GH-...Brandt Bucher2022-07-191-0/+17
* test_concurrent_futures: Fix unneeded/confusing format call (#93119)Florian Bruhin2022-07-191-1/+1
* gh-94949: Disallow parsing parenthesised ctx mgr with old feature_version (#9...Shantanu2022-07-181-0/+8
* Revert "gh-93910: [Enum] restore member.member restriction while keeping perf...Ethan Furman2022-07-182-14/+1
* Revert "gh-94816: Improve coverage of decode_linetable (GH-94853)" (GH-94982)Michael Droettboom2022-07-181-23/+0
* GH-94822: Don't specialize when metaclasses are involved (GH-94892)Brandt Bucher2022-07-181-0/+344
* gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-94931)Serhiy Storchaka2022-07-181-3/+13
* GH-94739: Mark stacks of exception handling blocks for setting frame.f_lineno...Mark Shannon2022-07-181-18/+29
* gh-94947: Disallow parsing walrus with feature_version < (3, 8) (#94948)Shantanu2022-07-181-0/+5
* gh-94601: [Enum] fix inheritance for __str__ and friends (GH-94942)Ethan Furman2022-07-182-10/+42
* gh-72889: Remove redundant mock.Mock()._is_coroutine = False workarounds (#94...Thomas Grainger2022-07-173-13/+0
* gh-91348: Restore frame argument to sys._getframe audit event (GH-94928)Steve Dower2022-07-172-0/+23
* gh-93910: [Enum] restore member.member restriction while keeping performance ...Ethan Furman2022-07-172-1/+14
* gh-91181: drop support for bytes on sys.path (GH-31934)Thomas Grainger2022-07-173-4/+4
* gh-94869: Fix the location in some expressions for multi-line f-string ast no...Pablo Galindo Salgado2022-07-161-2/+31
* gh-94772: Fix off-by-one error in Windows launcher (GH-94779)Paul Moore2022-07-161-0/+24
* gh-94814: Improve coverage of _PyCode_CreateLineArray (GH-94852)Michael Droettboom2022-07-151-0/+22
* gh-94821: Fix autobind of empty unix domain address (GH-94826)Nir Soffer2022-07-151-0/+19
* gh-94808: Add coverage for boolobject.c:bool_new (GH-94859)Michael Droettboom2022-07-141-0/+7
* GH-94808: Cover handling non-finite numbers from round when ndigits is provid...Michael Droettboom2022-07-141-0/+5
* gh-94816: Improve coverage of decode_linetable (GH-94853)Michael Droettboom2022-07-141-0/+23