summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* Python 3.10.6v3.10.6Pablo Galindo2022-08-0183-143/+824
* gh-95511: IDLE - fix Shell context menu copy-with-prompts bug (GH-95512)Miss Islington (bot)2022-08-011-0/+2
* [3.10] bpo-46053: Fix OSS audio support on NetBSD (GH-30065). (GH-95477)Thomas Klausner2022-07-311-0/+1
* gh-95471: IDLE - Tweak Edit menu (GH-95481)Miss Islington (bot)2022-07-311-0/+1
* gh-95411: IDLE - Enable using the module browser with .pyw files (GH-95397)Miss Islington (bot)2022-07-301-0/+1
* [3.10] gh-95166: cancel map waited on future on timeout (GH-95169) (GH-95375)Łukasz Langa2022-07-291-0/+1
* gh-89610: Add .pyi as a recognised extension for IDLE on macOS (GH-95393)Miss Islington (bot)2022-07-281-0/+2
* gh-86128: Add warning to ThreadPoolExecutor docs about atexit behaviour (GH-9...Miss Islington (bot)2022-07-281-0/+1
* gh-95355: Check tokens[0] after allocating memory (GH-95356)Miss Islington (bot)2022-07-281-0/+1
* [3.10] GH-93899: fix checks for eventfd flags (GH-95170). (#95345)Kumar Aditya2022-07-281-0/+1
* [3.10] gh-94938: Fix errror detection of unexpected keyword arguments (GH-949...Serhiy Storchaka2022-07-281-0/+3
* gh-95339: update bundled pip to 22.2.1 (gh-95340)Miss Islington (bot)2022-07-271-0/+1
* GH-95045: gc untrack _lsprof.Profiler before deallocating it (GH-95315)Miss Islington (bot)2022-07-271-0/+1
* gh-95280: Fix test_get_ciphers on systems without RSA key exchange (GH-95282)Miss Islington (bot)2022-07-271-0/+2
* gh-95087: Fix IndexError in parsing invalid date in the email module (GH-95201)Miss Islington (bot)2022-07-251-0/+1
* gh-95212: make multiprocessing test case parallel-safe (GH-95213)Miss Islington (bot)2022-07-251-0/+2
* gh-95199: upgrade bundled setuptools to 63.2.0 (gh-95200)Miss Islington (bot)2022-07-241-0/+1
* gh-95194: upgrade bundled pip to 22.2 (gh-95195)Miss Islington (bot)2022-07-241-0/+1
* gh-93157: Fix fileinput didn't support `errors` in `inplace` mode (GH-95128)Miss Islington (bot)2022-07-241-0/+2
* [3.10] gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-...Miss Islington (bot)2022-07-191-0/+2
* GH-91153: Handle mutating __index__ methods in bytearray item assignment (GH-...Miss Islington (bot)2022-07-191-0/+2
* [3.10] gh-94949: Disallow parsing parenthesised ctx mgr with old feature_vers...Shantanu2022-07-191-0/+1
* [3.10] gh-94947: Disallow parsing walrus with feature_version < (3, 8) (GH-94...Shantanu2022-07-181-0/+1
* gh-94821: Fix autobind of empty unix domain address (GH-94826)Miss Islington (bot)2022-07-171-0/+2
* gh-94864: Fix PyArg_Parse* with deprecated format units "u" and "Z" (GH-94902)Miss Islington (bot)2022-07-171-0/+2
* gh-94869: Fix the location in some expressions for multi-line f-string ast no...Miss Islington (bot)2022-07-161-0/+2
* gh-90844: Allow virtual environments to correctly launch when they have space...Miss Islington (bot)2022-07-161-0/+2
* [3.10] gh-94841: Ensure arena_map_get() is inlined in PyObject_Free() (GH-94842)Neil Schemenauer2022-07-151-0/+1
* bpo-45924: Fix asyncio incorrect traceback when future's exception is raised ...Miss Islington (bot)2022-07-111-0/+1
* GH-94736: Fix _multiprocessing.SemLock subclassing (GH-94738)Miss Islington (bot)2022-07-111-0/+1
* [3.10] GH-94329: Don't raise on excessive stack consumption (GH-94421) (#94448)Mark Shannon2022-07-111-0/+2
* gh-94637: Release GIL in SSLContext.set_default_verify_paths (GH-94658)Miss Islington (bot)2022-07-091-0/+3
* [3.10] gh-94321: Document sqlite3.PrepareProtocol (GH-94620) (#94671)Erlend Egeberg Aasland2022-07-071-0/+2
* [3.10] gh-94430: Allow params named `module` or `self` with custom C names in...Erlend Egeberg Aasland2022-07-071-0/+2
* [3.10] gh-94510: Raise on re-entrant calls to sys.setprofile and syssettrace ...Pablo Galindo Salgado2022-07-051-0/+2
* [3.10] gh-91330: Tests and docs for dataclass descriptor-typed fields (GH-944...Łukasz Langa2022-07-051-0/+7
* [3.10] gh-94360: Fix a tokenizer crash when reading encoded files with syntax...Pablo Galindo Salgado2022-07-051-0/+2
* gh-90355: Add isolated flag if currently isolated (GH-92857) (GH-94569)Miss Islington (bot)2022-07-051-0/+1
* [3.10] bpo-46755: Don't log stack info twice in QueueHandler (GH-31355) (GH-9...Vinay Sajip2022-07-051-0/+2
* gh-94538: Fix Argument Clinic output to custom file (GH-94539) (GH-94556)Miss Islington (bot)2022-07-051-0/+2
* [3.10] Docs: remove redundant "adverb-adjective" hyphens from compound modifi...Łukasz Langa2022-07-055-5/+5
* gh-84753: Clarify change made to `inspect` functions (GH-94554) (GH-94559)Miss Islington (bot)2022-07-051-2/+6
* [3.10] gh-93975: Provide nicer error reporting from subprocesses in test_venv...Jason R. Coombs2022-07-011-0/+2
* gh-84753: Make inspect.iscoroutinefunction() work with AsyncMock (GH-94050) (...Miss Islington (bot)2022-06-301-0/+3
* gh-92336: linecache.getline should not raise exceptions on decoding errors (G...Miss Islington (bot)2022-06-301-0/+1
* [3.10] GH-89988: Fix memory leak in pickle.Pickler dispatch_table lookup (GH-...Kumar Aditya2022-06-281-0/+1
* gh-92841: Fix asyncio's RuntimeError: Event loop is closed (GH-92842) (GH-92904)Miss Islington (bot)2022-06-281-0/+2
* gh-94208: Add more TLS version/protocol checks for FreeBSD (GH-94347)Miss Islington (bot)2022-06-281-0/+2
* [3.10] gh-94192: Fix error for dictionary literals with invalid expression as...wookie1842022-06-271-0/+1
* GH-94254: Make _struct module types immutable (GH-94269)Miss Islington (bot)2022-06-261-0/+1