summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-44859: Improve error handling in sqlite3 and and raise more accurate exce...Serhiy Storchaka2021-08-081-0/+8
* bpo-44856: Possible reference leak in error paths of update_bases() and __bui...Pablo Galindo Salgado2021-08-071-0/+1
* bpo-42971: Add errno.EQFULL (macOS) (GH-24419)Ronald Oussoren2021-08-061-0/+2
* bpo-41576: document BaseException in favor of bare except (GH-21917)Thomas Grainger2021-08-061-0/+1
* bpo-27752: improve documentation of csv.Dialect (GH-26795)Jack DeVries2021-08-061-0/+1
* bpo-44605: Teach @total_ordering() to work with metaclasses (GH-27633)Raymond Hettinger2021-08-061-0/+1
* bpo-44839: Raise more specific errors in sqlite3 (GH-27613)Serhiy Storchaka2021-08-061-0/+4
* Upgrade bundled pip and setuptools (#27625)Tzu-ping Chung2021-08-061-0/+1
* bpo-44756: [docs] revert automated virtual environment creation on `make html...Ɓukasz Langa2021-08-061-0/+3
* bpo-44524: Fix an issue wherein `_GenericAlias._name` was not properly set fo...Bas van Beek2021-08-061-0/+2
* bpo-44849: Fix os.set_inheritable() on FreeBSD 14 with O_PATH (GH-27623)Victor Stinner2021-08-061-0/+4
* bpo-40928: notify users running test_decimal on macOS of malloc warnings (GH-...Jack DeVries2021-08-061-0/+2
* bpo-44584: Deprecate PYTHONTHREADDEBUG env var (GH-27065)Victor Stinner2021-08-062-0/+4
* bpo-44838: Refine the custom syntax errors for invalid 'if' expressions (GH-2...Pablo Galindo Salgado2021-08-051-0/+2
* bpo-44822: Don't truncate `str`s with embedded NULL chars returned by `sqlite...Erlend Egeberg Aasland2021-08-051-0/+3
* bpo-41706: Fix special method invocation docs to mention using type() (GH-22084)William Chargin2021-08-041-0/+2
* bpo-42958: Improve description of shallow= in filecmp.cmp docs (GH-27166)andrei kulakov2021-08-041-0/+2
* [doc] bpo-43066: zipfile - add note on leading slash in the filename arg (GH-...andrei kulakov2021-08-041-0/+2
* bpo-44801: Check arguments in substitution of ParamSpec in Callable (GH-27585)Serhiy Storchaka2021-08-041-0/+3
* bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589)Mark Shannon2021-08-041-0/+2
* bpo-27275: Change popitem() and pop() methods of collections.OrderedDict (GH-...Serhiy Storchaka2021-08-031-0/+3
* 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