summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* [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
* [3.10] bpo-44654: Refactor and clean up the union type implementation (GH-271...Miss Islington (bot)2021-07-178-120/+85
* [3.10] bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980...Serhiy Storchaka2021-07-175-19/+102
* Replace @ilevkivskyi with @Fidget-Spinner as typing code owner (GH-27210) (#2...Miss Islington (bot)2021-07-171-1/+1
* bpo-41249: Fix postponed annotations for TypedDict (GH-27017) (#27204)Miss Islington (bot)2021-07-174-7/+43
* bpo-44655: Include the name of the type in unset __slots__ attribute errors (...Miss Islington (bot)2021-07-173-4/+17
* bpo-44655: Don't include suggestions for attributes that are the same as the ...Miss Islington (bot)2021-07-163-0/+17
* Revert "bpo-44645: Check for interrupts on any potentially backwards edge. (G...Miss Islington (bot)2021-07-162-31/+1
* bpo-44647: Add a permanent Unicode-valued env var to regrtest (GH-27187) (#2...Miss Islington (bot)2021-07-163-1/+23
* [3.10] bpo-44652: Preserve natural order of args in the union type. (GH-27185...Serhiy Storchaka2021-07-163-11/+39
* bpo-40897:Give priority to using the current class constructor in `inspect.si...Miss Islington (bot)2021-07-163-8/+59
* [3.10] bpo-44636: Collapse union of equal types (GH-27178) (GH-27181)Serhiy Storchaka2021-07-163-9/+20
* bpo-44626: Merge basic blocks earlier to enable better handling of exit block...Mark Shannon2021-07-165-3827/+3893
* [3.10] bpo-44645: Check for interrupts on any potentially backwards edge. (GH...Mark Shannon2021-07-162-1/+31
* bpo-44646: Fix the hash of the union type. (GH-27179) (#27180)Miss Islington (bot)2021-07-163-4/+12
* bpo-44184: Apply GH-26274 to the non-GC-type branch of subtype_dealloc (GH-27...Miss Islington (bot)2021-07-151-3/+11
* bpo-44647: Fix test_httpservers failing on Unicode characters in os.environ o...Miss Islington (bot)2021-07-151-4/+13