summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-45239: Fix parsedate_tz when time has more than 2 dots in it (GH-28452) (...Miss Islington (bot)2021-10-131-0/+3
* bpo-20692: Add Programming FAQ entry for 1.__class__ error. (GH-28918)Miss Islington (bot)2021-10-131-0/+2
* [3.9] bpo-45405: Prevent ``internal configure error`` when running ``configur...Miss Islington (bot)2021-10-131-0/+2
* bpo-20028: Improve error message of csv.Dialect when initializing (GH-28705)Miss Islington (bot)2021-10-091-0/+2
* bpo-45262, asyncio: Fix cache of the running loop holder (GH-28796)Miss Islington (bot)2021-10-071-0/+1
* bpo-45337: Use the realpath of the new executable when creating a venv on Win...Miss Islington (bot)2021-10-071-0/+4
* [3.9] [Misc] [Mac] Fix typos found using codespell (GH-28756) (GH-28793)Christian Clauss2021-10-074-12/+12
* [3.9] bpo-45385: Fix reference leak from descr_check (GH-28719) (GH-28780)Dong-hee Na2021-10-071-0/+1
* bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646) (GH-28...Miss Islington (bot)2021-10-061-0/+1
* [3.9] bpo-45343: Update bundled pip to 21.2.4 and setuptools to 58.1.0 (GH-28...Łukasz Langa2021-10-051-0/+1
* [3.9] bpo-44050: Extension modules can share state when they don't support su...Łukasz Langa2021-10-051-0/+3
* bpo-45371: Fix distutils' rpath support for clang (GH-28732)Miss Islington (bot)2021-10-051-0/+3
* [3.9] bpo-44594: fix (Async)ExitStack handling of __context__ (gh-27089) (GH-...John Belmonte2021-10-051-0/+3
* bpo-44687: Ensure BufferedReader objects with unread buffers can peek even wh...Miss Islington (bot)2021-10-011-0/+1
* bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28671) (GH-...Miss Islington (bot)2021-10-011-0/+5
* [3.9] bpo-40173: Fix test.support.import_helper.import_fresh_module() (GH-286...Serhiy Storchaka2021-09-301-0/+2
* closes bpo-44751: Move crypt.h include from public header to _cryptmodule (GH...Miss Islington (bot)2021-09-291-0/+1
* [3.9] bpo-39039: tarfile raises descriptive exception from zlib.error (GH-277...Łukasz Langa2021-09-291-0/+2
* bpo-45269: test wrong `markers` type to `c_make_encoder` (GH-28540) (GH-28610)Miss Islington (bot)2021-09-281-0/+1
* [3.9] [docs] Improve the markup of powers (GH-28598) (GH-28608)Łukasz Langa2021-09-285-5/+5
* bpo-45296: Fix exit/quit message on Windows (GH-28577) (GH-28601)Miss Islington (bot)2021-09-281-0/+2
* bpo-1596321: Fix threading._shutdown() for the main thread (GH-28549) (GH-28589)Victor Stinner2021-09-271-0/+3
* bpo-45274: Fix Thread._wait_for_tstate_lock() race condition (GH-28532)Miss Islington (bot)2021-09-271-0/+5
* bpo-45280: Add test for empty `NamedTuple` in `test_typing` (GH-28559) (GH-28...Miss Islington (bot)2021-09-261-0/+1
* [3.9] bpo-45166: fixes `get_type_hints` failure on `Final` (GH-28279) (GH-28561)Łukasz Langa2021-09-251-0/+2
* [3.9] bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug() (GH-28449) (GH-...Łukasz Langa2021-09-221-0/+2
* [3.9] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28512)Łukasz Langa2021-09-221-1/+1
* bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in ...Miss Islington (bot)2021-09-211-0/+3
* bpo-45216: Remove extraneous method docs from `difflib` (GH-28445) (GH-28506)Miss Islington (bot)2021-09-211-0/+2
* bpo-45209: fix `UserWarning: resource_tracker` in test_multiprocessing (GH-28...Miss Islington (bot)2021-09-211-0/+2
* [3.9] bpo-45021: Fix a hang in forked children (GH-28007) (GH-28481)Miss Islington (bot)2021-09-201-0/+1
* bpo-36674: Honour the skipping decorators in TestCase.debug() (GH-28446)Miss Islington (bot)2021-09-181-0/+2
* bpo-45235: Fix argparse overrides namespace with subparser defaults (GH-28420...Miss Islington (bot)2021-09-181-0/+2
* bpo-45228: Fix stack buffer overflow in parsing J1939 address (GH-28404)Miss Islington (bot)2021-09-171-0/+1
* bpo-45220: Avoid automatically selecting the Windows 11 SDK preview when buil...Miss Islington (bot)2021-09-161-0/+3
* bpo-45167: Fix deepcopying of GenericAlias (GH-28324) (GH-28368)Miss Islington (bot)2021-09-151-0/+1
* bpo-45195: Fix test_readline.test_nonascii() (GH-28329) (GH-28334)Miss Islington (bot)2021-09-151-0/+3
* bpo-45156: Fixes inifite loop on unittest.mock.seal() (GH-28300)Miss Islington (bot)2021-09-141-0/+2
* bpo-35474: Fix mimetypes.guess_all_extensions() potentially mutating list (GH...Miss Islington (bot)2021-09-131-0/+3
* bpo-44219: Mention GH-28250 is a deadlock bugfix (GH-28261) (GH-28275)Miss Islington (bot)2021-09-101-1/+2
* bpo-44219: Release the GIL during isatty syscalls (GH-28250)Miss Islington (bot)2021-09-091-0/+4
* [3.9] bpo-45121: Fix RecursionError when calling Protocol.__init__ from a sub...Ken Jin2021-09-081-0/+2
* [3.9] bpo-45042: Now test classes decorated with `requires_hashdigest` are no...Serhiy Storchaka2021-09-051-0/+1
* bpo-45030: Fix integer overflow in __reduce__ of the range iterator (GH-28000)Miss Islington (bot)2021-09-041-0/+1
* [3.9] bpo-45097: Remove incorrect deprecation warnings in asyncio. (GH-28153)Serhiy Storchaka2021-09-041-0/+2
* [3.9] bpo-45083: Include the exception class qualname when formatting an exce...Miss Islington (bot)2021-09-031-0/+3
* bpo-45081: Fix __init__ method generation when inheriting from Protocol (GH-2...Miss Islington (bot)2021-09-021-0/+2
* bpo-44756: Remove misleading NEWS entries of a change that was reverted befor...Łukasz Langa2021-08-301-25/+0
* Python 3.9.7v3.9.7Łukasz Langa2021-08-3091-190/+925
* [3.9] bpo-43913: Fix bugs in cleaning up classes and modules in unittest. (GH...Serhiy Storchaka2021-08-301-0/+8