aboutsummaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-96192: fix os.ismount() to use a path that is str or bytes (GH-96194)Miss Islington (bot)2022-11-302-0/+3
* gh-82836: fix private network check (GH-97733)Miss Islington (bot)2022-11-292-4/+49
* gh-99344, gh-99379, gh-99382: Fix issues in substitution of ParamSpec and Typ...Miss Islington (bot)2022-11-292-41/+111
* [3.11] gh-99811: Use correct variable to search for time in format string (GH...Miss Islington (bot)2022-11-281-1/+1
* [3.11] bpo-31718: Fix io.IncrementalNewlineDecoder SystemErrors and segfaults...Kumar Aditya2022-11-281-1/+9
* gh-51524: Fix bug when calling trace.CoverageResults with valid infile (GH-99...Miss Islington (bot)2022-11-272-1/+11
* GH-87235: Make sure "python /dev/fd/9 9</path/to/script.py" works on macOS (G...Miss Islington (bot)2022-11-272-98/+119
* gh-91078: Return None from TarFile.next when the tarfile is empty (GH-91850)Miss Islington (bot)2022-11-262-0/+14
* gh-97966: Restore prior expectation that uname_result._fields and ._asdict wo...Miss Islington (bot)2022-11-262-2/+12
* bpo-38031: Fix a possible assertion failure in _io.FileIO() (GH-GH-5688)Miss Islington (bot)2022-11-251-0/+8
* [3.11] gh-88863: Clear ref cycles to resolve leak when asyncio.open_connectio...Dong Uk, Kang2022-11-233-12/+33
* [3.11] gh-99645: Fix a bug in handling class cleanups in unittest.TestCase (G...Serhiy Storchaka2022-11-222-5/+32
* gh-99341: Cover type ignore nodes when incrementing line numbers (GH-99422)Miss Islington (bot)2022-11-222-0/+18
* gh-99659: Use correct exceptions in sqlite3 bigmem tests (GH-99660)Miss Islington (bot)2022-11-221-4/+4
* [3.11] gh-99103: Normalize specialized traceback anchors against the current ...Batuhan Taskaya2022-11-212-3/+42
* Add more details in test_unittest (GH-99626)Miss Islington (bot)2022-11-212-35/+67
* gh-99578: Fix refleak in _imp.create_builtin() (GH-99642)Miss Islington (bot)2022-11-211-0/+30
* gh-99581: Fix a buffer overflow in the tokenizer when copying lines that fill...Miss Islington (bot)2022-11-201-0/+16
* [3.11] gh-99211: Point to except/except* on syntax errors when mixing them (G...Lysandros Nikolaou2022-11-201-2/+2
* [3.11] gh-78453: Move Unicode C API tests from test_unicode to test_capi.test...Serhiy Storchaka2022-11-202-461/+474
* [3.11] gh-98086: Now ``patch.dict`` can decorate async functions (GH-98095) (...Miss Islington (bot)2022-11-192-0/+35
* gh-99442: Fix handling in py.exe launcher when argv[0] does not include a fil...Miss Islington (bot)2022-11-181-1/+10
* gh-99553: fix bug where an ExceptionGroup subclass can wrap a BaseException (...Miss Islington (bot)2022-11-181-4/+18
* gh-99370: Prefer LIBDIR from sysconfig when locating libpython for test (GH-9...Miss Islington (bot)2022-11-161-1/+3
* gh-87604: Avoid publishing list of active per-interpreter audit hooks via the...Miss Islington (bot)2022-11-152-0/+16
* GH-98219: reduce sleep time in `asyncio` subprocess test (GH-99464)Miss Islington (bot)2022-11-151-1/+1
* gh-99370: fix test_zippath_from_non_installed_posix (GH-99483)Miss Islington (bot)2022-11-141-51/+60
* [3.11] gh-99357: Close the event loop when it is no longer used in test_uncan...Miss Islington (bot)2022-11-141-21/+24
* gh-99370: Calculate zip path from prefix when in a venv (GH-99371)Miss Islington (bot)2022-11-142-0/+96
* [Enum] update version TODO comment (GH-99458)Miss Islington (bot)2022-11-131-1/+1
* gh-99275: Fix `SystemError` in `ctypes` during `__initsubclass__` (GH-99283)Miss Islington (bot)2022-11-131-0/+9
* gh-99418: Make urllib.parse.urlparse enforce that a scheme must begin with an...Miss Islington (bot)2022-11-132-1/+19
* bpo-34272: Reorganize C API tests. (GH-8551)Miss Islington (bot)2022-11-125-0/+8
* gh-80448: argparse: Fix IndexError on store_true action (GH-15656)Miss Islington (bot)2022-11-112-2/+6
* [3.11] gh-99277: remove older version of `get_write_buffer_limits` (GH-99280)...Miss Islington (bot)2022-11-101-6/+0
* gh-99204: Calculate base_executable by alternate names in POSIX venvs (GH-99206)Miss Islington (bot)2022-11-101-0/+31
* [3.11] GH-99257: Check the owner's type when specializing slots (GH-99324)Miss Islington (bot)2022-11-101-0/+67
* gh-74044: inspect.signature for wrappers around decorated bound methods (GH-736)Miss Islington (bot)2022-11-102-3/+11
* gh-99320: remove tests for old-style class from `test_complex` (GH-99321)Miss Islington (bot)2022-11-101-6/+1
* gh-94445: add compiler test for another case of excessive stack use (GH-99237)Miss Islington (bot)2022-11-081-0/+7
* gh-99248: [Enum] fix negative number infinite loop (GH-99256)Miss Islington (bot)2022-11-082-2/+22
* gh-99181: fix except* on unhashable exceptions (GH-99192)Miss Islington (bot)2022-11-081-0/+199
* gh-92119: ctypes: Print exception class name instead of its representation (G...Miss Islington (bot)2022-11-071-2/+2
* [3.11] gh-98433: Fix quadratic time idna decoding. (GH-99092) (#99222)Miss Islington (bot)2022-11-072-17/+21
* [3.11] gh-98513: Test abstract methods of some `collections` types (GH-98516)...Miss Islington (bot)2022-11-071-0/+5
* gh-99124: use concrete exception types in `test_builtin` (GH-99125)Miss Islington (bot)2022-11-071-3/+3
* bpo-38523: ignore_dangling_symlinks does not apply recursively (GH-22937)Miss Islington (bot)2022-11-072-8/+16
* [3.11] gh-99153: set location on SyntaxError for try with both except and exc...Irit Katriel2022-11-071-0/+10
* [3.11] GH-99155: Fix `NormalDist` pickle with `0` and `1` protocols (GH-99156...Nikita Sobolev2022-11-072-3/+14
* gh-99051: remove duplicated test from `test_weakref` (GH-99052)Miss Islington (bot)2022-11-061-35/+6