summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* closes bpo-39091: Fix segfault when Exception constructor returns non-excepti...Noah2021-08-032-0/+2
* bpo-44792: Improve syntax errors for if expressions (GH-27506)Miguel Brito2021-08-022-0/+2
* bpo-35183: Add typical examples to os.path.splitext docs (GH-27286)Jake Stockwin2021-08-021-0/+1
* bpo-44806: Fix __init__ in subclasses of protocols (GH-27545)Serhiy Storchaka2021-08-021-0/+2
* bpo-44793: Fix checking the number of arguments when subscribe a generic type...Serhiy Storchaka2021-08-021-0/+2
* bpo-37880: for argparse add_argument with action='store_const', const now def...Jack DeVries2021-07-311-0/+3
* bpo-44784: Apply changes from importlib_metadata 4.6.3 (GH-27508)Jason R. Coombs2021-07-311-0/+2
* bpo-44667: Treat correctly lines ending with comments and no newlines in the ...Pablo Galindo Salgado2021-07-311-0/+4
* bpo-44648: Fix error type in inspect.getsource() in interactive session (GH-2...andrei kulakov2021-07-301-0/+3
* bpo-43625: Enhance csv sniffer has_headers() to be more accurate (GH-26939)andrei kulakov2021-07-301-0/+2
* bpo-42892: fix email multipart attribute error (GH-26903)andrei kulakov2021-07-301-0/+1
* bpo-44666: Use default encoding as fallback for compile_file (GH-27236)Stefan Hoelzl2021-07-302-0/+3
* bpo-44747: Refactor usage of sys._getframe at typing module (#27387)Yurii Karabas2021-07-301-0/+2
* bpo-44771: Apply changes from importlib_resources 5.2.1 (GH-27436)Jason R. Coombs2021-07-301-0/+5
* bpo-44662: Add ability to annotate types.Union (#27214)Yurii Karabas2021-07-291-0/+3
* bpo-44725 : expose specialization stats in python (GH-27192)Irit Katriel2021-07-291-0/+1
* bpo-44752: Make rlcompleter not call `@property` methods (GH-27401)Jack DeVries2021-07-291-0/+2
* bpo-41103: Resurrect the old buffer protocol. (GH-27437)Inada Naoki2021-07-292-0/+13
* bpo-42035: Add a PyType_GetName() to get type's short name. (GH-23903)Hai Shi2021-07-292-0/+5
* bpo-44688: Remove ASCII limitation from `sqlite3` collation names (GH-27395)Erlend Egeberg Aasland2021-07-291-0/+2
* bpo-40263: Fixes an off-by-one error in _winapi_WaitForMultipleObjects_impl (...Ray Donnelly2021-07-281-0/+3
* bpo-44682: Handle invalid arg to pdb's "commands" directive (#27252)andrei kulakov2021-07-281-0/+2
* bpo-44544: [doc] list all textwrap func kwargs (GH-26999)Jack DeVries2021-07-281-0/+4
* bpo-27827: identify a greater range of reserved filename on Windows. (GH-26698)Barney Gale2021-07-281-0/+2
* bpo-44756: in ./Doc, `make build` depends on `make html` (#27403)Jack DeVries2021-07-281-0/+6
* bpo-44461: Check early that a pdb target is valid for execution. (#27227)Jason R. Coombs2021-07-281-0/+1
* closes bpo-44751: Move crypt.h include from public header to _cryptmodule (GH...Geoffrey Thomas2021-07-271-0/+1
* bpo-34013: Generalize the invalid legacy statement error message (GH-27389)Pablo Galindo Salgado2021-07-271-0/+3
* bpo-44740: Make minor edits to lowercasing "internet" and "web". (GH-27385)Mariusz Felisiak2021-07-271-1/+1
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-263-9/+11
* bpo-44515: handle non-refcounted GC in contextlib tests (GH-26910)Nick Coghlan2021-07-261-0/+2
* The current documentation says it returns None if the name is not found, but ...Jelle Zijlstra2021-07-261-0/+1
* bpo-44698: Fix undefined behaviour in complex exponentiation. (GH-27278)T. Wouters2021-07-261-0/+1
* bpo-44732: Rename types.Union to types.UnionType (#27342)Hasan2021-07-261-0/+1
* bpo-44734: Fix precision in turtle tests (GH-27343)Logan Jones2021-07-261-0/+1
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-261-0/+5
* bpo-44693: Update __future__ entry in Doc/glossary.rst (GH-27349)Steven Hsu2021-07-261-0/+2
* bpo-44600: Fix line numbers for pattern matching cleanup code (GH-27346)Charles Burkland2021-07-251-0/+1
* bpo-42378: fixed log truncation on logging shutdown (GH-27310)andrei kulakov2021-07-251-0/+4
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27338)Filipe Laíns2021-07-241-0/+1
* Revert "bpo-44717: improve AttributeError on circular imports of submodules (...Pablo Galindo Salgado2021-07-241-1/+0
* bpo-44717: improve AttributeError on circular imports of submodules (GH-27299)Filipe Laíns2021-07-241-0/+1
* bpo-44720: Don't crash when calling weakref.proxy(not_an_iterator).__next__ (...Dennis Sweeney2021-07-241-0/+1
* bpo-42854: Correctly use size_t for _ssl._SSLSocket.read and _ssl._SSLSocket....Pablo Galindo Salgado2021-07-231-0/+3
* bpo-44611: Use BCryptGenRandom instead of CryptGenRandom on Windows (GH-27168)Dong-hee Na2021-07-231-0/+2
* bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...Petr Viktorin2021-07-231-0/+4
* bpo-29298: Fix crash with required subparsers without dest (GH-3680)Anthony Sottile2021-07-231-0/+2
* bpo-44676: Add ability to serialize types.Union (GH-27244)Yurii Karabas2021-07-231-0/+2
* bpo-44653: Support typing types in parameter substitution in the union type. ...Serhiy Storchaka2021-07-221-0/+1
* bpo-44353: Implement typing.NewType __call__ method in C (#27262)Yurii Karabas2021-07-221-0/+2