summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-44600: Refactor new tracing tests (GH-27396) (GH-27404)Miss Islington (bot)2021-07-281-67/+74
* bpo-34013: Move the Python 2 hints from the exception constructor to the pars...Miss Islington (bot)2021-07-275-224/+28
* [3.10] bpo-34013: Generalize the invalid legacy statement error message (GH-2...Pablo Galindo Salgado2021-07-277-246/+339
* bpo-44740: Make minor edits to lowercasing "internet" and "web". (GH-27385) (...Miss Islington (bot)2021-07-274-4/+4
* [doc] Fix typo in asyncio Event Loop (GH-27377)Miss Islington (bot)2021-07-271-1/+1
* Add windows build.bat counterpart for 'make regen-all' in error message (GH-2...Miss Islington (bot)2021-07-271-1/+1
* bpo-44740: Lowercase "internet" and "web" where appropriate. (GH-27378) (GH-2...Miss Islington (bot)2021-07-2661-107/+109
* bpo-44515: handle non-refcounted GC in contextlib tests (GH-26910) (GH-27379)Miss Islington (bot)2021-07-263-6/+13
* docs: replace "Mac OS X" -> "macOS" (GH-27364) (GH-27374)Miss Islington (bot)2021-07-261-6/+6
* The current documentation says it returns None if the name is not found, but ...Miss Islington (bot)2021-07-262-1/+2
* bpo-43443: Clarify difference between shelve objects and dicts (GH-27004) (GH...Miss Islington (bot)2021-07-261-1/+2
* bpo-44490: Add 'Whats New' docs regarding types.Union changes (GH-27215) (GH-...Miss Islington (bot)2021-07-261-1/+2
* bpo-44698: Fix undefined behaviour in complex exponentiation. (GH-27278) (#27...Miss Islington (bot)2021-07-263-8/+37
* bpo-44732: Rename types.Union to types.UnionType (GH-27342)Miss Islington (bot)2021-07-267-22/+22
* bpo-44734: Fix precision in turtle tests (GH-27343) (GH-27361)Miss Islington (bot)2021-07-262-11/+4
* bpo-44693: Update __future__ entry in Doc/glossary.rst (GH-27349) (GH-27357)Miss Islington (bot)2021-07-262-6/+9
* [3.10] bpo-44600: Fix line numbers for pattern matching cleanup code (GH-2734...Miss Islington (bot)2021-07-263-4/+89
* [3.10] bpo-44399: Update logging cookbook to document patterns to be avoided....Miss Islington (bot)2021-07-251-0/+79
* [3.10] bpo-43184: Add information about added attribute and method. (GH-27347...Miss Islington (bot)2021-07-251-0/+4
* bpo-44676: Serialize the union type using only public API (GH-27323) (GH-27340)Miss Islington (bot)2021-07-244-80/+23
* bpo-44731: Simplify the union type implementation (GH-27318) (GH-27334)Ken Jin2021-07-243-94/+26
* [3.10] bpo-44676: Add ability to serialize types.Union (GH-27244) (GH-27333)Pablo Galindo Salgado2021-07-244-2/+90
* bpo-44353: Improve tests covering typing.NewType pickling (GH-27302) (GH-27328)Miss Islington (bot)2021-07-241-8/+9
* [3.10] bpo-44353: Expand NewType tests for complex __qualname__ (GH-27311) (G...Ɓukasz Langa2021-07-242-15/+48
* bpo-44713: [doc fix]: typo in subprocess.rst (GH-27297) (GH-27298)Miss Islington (bot)2021-07-241-1/+1
* bpo-44720: Don't crash when calling weakref.proxy(not_an_iterator).__next__ (...Miss Islington (bot)2021-07-243-0/+37
* bpo-44353: Document that typing.NewType is now a class (GH-27319) (GH-27321)Miss Islington (bot)2021-07-241-10/+19
* bpo-42854: Correctly use size_t for _ssl._SSLSocket.read and _ssl._SSLSocket....Miss Islington (bot)2021-07-233-12/+15
* bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...Miss Islington (bot)2021-07-237-56/+24
* bpo-29298: Fix crash with required subparsers without dest (GH-3680) (GH-27303)Miss Islington (bot)2021-07-233-0/+28
* bpo-44653: Support typing types in parameter substitution in the union type. ...Miss Islington (bot)2021-07-223-13/+43
* bpo-44708: Only re-run test methods that match names of previously failing te...Miss Islington (bot)2021-07-227-178/+345
* bpo-14879: [doc] clarify how to check for errors from subprocess.Popen(..., s...Miss Islington (bot)2021-07-221-1/+4
* Fix typo in collections.rst (GH-27270) (#27285)Miss Islington (bot)2021-07-221-1/+1
* bpo-44704: Make Set._hash consistent with frozenset.__hash__ (GH-27281) (GH-2...Miss Islington (bot)2021-07-223-0/+14
* bpo-30511: Add note on thread safety to shutil.make_archive() (GH-26933) (GH-...Miss Islington (bot)2021-07-212-0/+6
* bpo-44566: resolve differences between asynccontextmanager and contextmanager...Miss Islington (bot)2021-07-204-56/+85
* [3.10] bpo-43219: skip Solaris in the test as well (GH-27257) (GH-27268)Miss Islington (bot)2021-07-201-1/+2
* Update macOS build-installer script comments for 3.10 and remove unused pre-1...Miss Islington (bot)2021-07-202-59/+74
* bpo-44353: Add test to cover __or__ of two NewType (GH-27259) (#27261)Miss Islington (bot)2021-07-201-4/+7
* bpo-44353: Refactor typing.NewType into callable class (GH-27250) (#27258)Miss Islington (bot)2021-07-203-5/+44
* bpo-44524: Add missed __name__ and __qualname__ to typing module objects (GH-...Miss Islington (bot)2021-07-193-0/+72
* bpo-27513: email.utils.getaddresses() now handles Header objects (GH-13797) (...Miss Islington (bot)2021-07-193-1/+9
* Clean up comma usage in Doc/library/functions.rst (GH-27083) (#27243)Miss Islington (bot)2021-07-191-38/+38
* bpo-44490: Improve typing module compatibility with types.Union (GH-27048) (#...Ken Jin2021-07-195-7/+40
* bpo-44645: Check for interrupts on any potentially backwards edge (GH-27216) ...Miss Islington (bot)2021-07-192-1/+31
* [3.10] bpo-44561: Update hyperlinks in Doc/distributing/index.rst (GH-27032) ...Miss Islington (bot)2021-07-192-3/+6
* Correct the order of check-abidump (GH-27229)Pablo Galindo Salgado2021-07-182-4805/+9743
* [3.10] bpo-44654: Do not export the union type related symbols (GH-27223). (G...Serhiy Storchaka2021-07-181-3/+3
* bpo-44633: Fix parameter substitution of the union type with wrong types. (GH...Miss Islington (bot)2021-07-183-16/+36