aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Temporary hack: handle all extensions via .addext()gentoo-3.11.0b3Michał Górny2022-06-022-9/+15
* ssl: Hard-disable SSLv3 to avoid automagic depsMichał Górny2022-06-021-0/+4
* Skip RDS socket tests that hang frequentlyMichał Górny2022-06-021-0/+1
* Blacklist test_pickletools from __all__ test as it imports numpyMichał Górny2022-06-021-0/+2
* distutils: make -OO enable both opt-1 and opt-2 optimizationMichał Górny2022-06-022-10/+10
* Python 3.11.0b3v3.11.0b3Pablo Galindo2022-06-017-9/+31
* gh-92597: Improve error message for AST nodes with invalid ranges (GH-93398) ...Miss Islington (bot)2022-06-011-3/+3
* Remove the execution bit to some socket-related files. (GH-93368)Miss Islington (bot)2022-06-013-0/+0
* gh-93345: Fix a crash in substitution of nested TypeVar after TypeVarTuple (G...Miss Islington (bot)2022-05-313-2/+10
* [3.11] gh-91162: Fix substitution of unpacked tuples in generic aliases (GH-9...Miss Islington (bot)2022-06-016-3254/+3349
* gh-92597: Ensure that AST nodes without explicit end positions can be compile...Miss Islington (bot)2022-05-314-13/+35
* gh-69093: Fix Setup.local.in rule for _sqlite3 (GH-93380)Miss Islington (bot)2022-05-312-1/+2
* Remove VOC reference (93333)Miss Islington (bot)2022-05-311-2/+1
* Post 3.11.0b2Pablo Galindo2022-05-311-1/+1
* Python 3.11.0b2v3.11.0b2Pablo Galindo2022-05-3051-112/+499
* gh-93351: Ensure the position information in AST nodes created by the parser ...Miss Islington (bot)2022-05-302-0/+53
* Update macOS installer Welcome and ReadMe display wording to "beta". (GH-93344)Ned Deily2022-05-302-4/+4
* Fix typo in Lib/idlelib/idle_test/test_parenmatch.py (GH-93332) (#93339)Miss Islington (bot)2022-05-291-2/+2
* bpo-42272: fix misleading warning filter message/module docs (GH-23172)Miss Islington (bot)2022-05-292-6/+13
* gh-92240 : Include release dates for "What's New In Python 3.X" (GH-92937)Miss Islington (bot)2022-05-289-8/+13
* gh-92839: fixed typo in _bisectmodule.c (line 131) (GH-92849)Miss Islington (bot)2022-05-283-2/+9
* gh-92727: Add example of named group in doc for re.Match.__getitem__ (GH-92730)Miss Islington (bot)2022-05-281-0/+8
* [3.11] bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185) (GH-9...Eric Snow2022-05-2718-234/+10
* gh-93297: Make asyncio task groups prevent child tasks from being GCed (GH-93...Miss Islington (bot)2022-05-272-13/+7
* gh-93250: [Enum] Change IntEnum boundary to KEEP for backwards compatibility ...Miss Islington (bot)2022-05-272-3/+11
* gh-91243: Document Required and NotRequired (GH-93173)Miss Islington (bot)2022-05-271-7/+58
* gh-77024: test.support: Improve documentation (GH-92513)Miss Islington (bot)2022-05-271-42/+68
* gh-92898: Enhance _testcppext test on cast to PyObject* (GH-93111)Miss Islington (bot)2022-05-263-36/+56
* gh-93217: fix some issues in man page and --help (GH-93219)Miss Islington (bot)2022-05-262-8/+20
* test.pythoninfo logs more build info (GH-93225)Miss Islington (bot)2022-05-261-3/+47
* gh-93005: Fix py.exe launcher test to search for intended tag (GH-93190)Miss Islington (bot)2022-05-251-1/+1
* gh-90817: Deprecate explicitly locale.resetlocale() (GH-93196)Miss Islington (bot)2022-05-254-2/+21
* [3.11] gh-93035: [Enum] Fix IntFlag crash when no single-bit members (GH-9307...Miss Islington (bot)2022-05-251-1/+1
* gh-90473: Misc test fixes for WASI (GH-93218)Miss Islington (bot)2022-05-258-7/+26
* gh-91924: Fix __lltrace__ for non-UTF-8 stdout encoding (GH-93199)Miss Islington (bot)2022-05-252-1/+5
* test_threaded_import: Fix unittest.main spelling (GH-93114)Miss Islington (bot)2022-05-251-1/+1
* [3.11] gh-83245: Raise BadZipFile instead of ValueError when reading a corrup...Miss Islington (bot)2022-05-253-0/+15
* gh-92728: Restore re.template, but deprecate it (GH-93161)Miss Islington (bot)2022-05-2410-5/+65
* test.pythoninfo no longer requires socket (GH-93191)Miss Islington (bot)2022-05-241-1/+4
* GH-89369: test_contextlib_async finalizes event loop after each test (GH-93074)Miss Islington (bot)2022-05-241-7/+4
* GH-93112: Fix missing ResourceDenied import in test_urllib2net (GH-93113)Miss Islington (bot)2022-05-241-0/+1
* gh-93065: Fix HAMT to iterate correctly over 7-level deep trees (GH-93066) (G...Miss Islington (bot)2022-05-245-4/+65
* gh-93099: Fix _pyio to use locale module properly (gh-93136)Miss Islington (bot)2022-05-232-8/+15
* Doc: No need to use rst syntax in code comments. (GH-93102)Miss Islington (bot)2022-05-231-2/+2
* gh-93118: [Enum] fix error message (GH-93138) (GH-93142)Miss Islington (bot)2022-05-231-2/+3
* gh-92859: Doc: add info about logging.debug() calling basicConfig() (GH-93063...Miss Islington (bot)2022-05-232-4/+13
* gh-93061: Mark as artificial: backwards jump after async for (GH-93062) (GH-9...Miss Islington (bot)2022-05-233-0/+55
* [3.11] gh-93100: [Enum] fix missing variable in global_str (GH-93107) (GH-93134)Ethan Furman2022-05-232-0/+12
* gh-93010: InvalidHeaderError used but nonexistent (GH-93015)Miss Islington (bot)2022-05-233-9/+16
* gh-92913: Fix typos in documentation (GH-93129)Miss Islington (bot)2022-05-231-3/+3