summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update URLs in comments and metadata to use HTTPS (GH-27458)Noah Kantrowitz2021-07-3039-58/+58
|
* bpo-44747: Refactor usage of sys._getframe at typing module (#27387)Yurii Karabas2021-07-302-21/+9
| | | Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
* bpo-44761: Change default value of NewType __module__ attr (GH-27406)Yurii Karabas2021-07-302-4/+12
|
* bpo-44753: Don't use logfile extension when determining old files to be ↵Vinay Sajip2021-07-301-1/+2
| | | | deleted (GH-27475)
* bpo-44771: Apply changes from importlib_resources 5.2.1 (GH-27436)Jason R. Coombs2021-07-3019-373/+714
| | | | | | | * bpo-44771: Apply changes from importlib_resources@3b24bd6307 * Add blurb * Exclude namespacedata01 from eol conversion.
* Add missing gdbm dependencies to the UNIX CI (GH-27467)Pablo Galindo Salgado2021-07-291-0/+1
|
* bpo-31746: Fix broken call in GH-27431 (GH-27464)Erlend Egeberg Aasland2021-07-291-1/+1
|
* bpo-44479: Do not regenerate files during a PGO build as it will invalidate ↵Steve Dower2021-07-291-2/+6
| | | | the profile. (GH-27460)
* Minor fixes to specialization stats. (GH-27457)Mark Shannon2021-07-293-5/+13
| | | | | * Use class, not value for fail stats for BINARY_SUBSCR. * Fix counts for unquickened instructions.
* bpo-31746: Prevent segfaults when sqlite3.Connection is uninitialised (GH-27431)Erlend Egeberg Aasland2021-07-292-7/+44
|
* bpo-44662: Add ability to annotate types.Union (#27214)Yurii Karabas2021-07-293-1/+36
| | | Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
* Fix typo in ast.rst (GH-27449)HaeckelK2021-07-291-1/+1
| | | Co-authored-by: HaeckelK <haeckelk.github@gmail.com>
* To fix the random failed test cases of test___xxsubinterpreters in ↵Hai Shi2021-07-291-0/+15
| | | | multiprocess. (GH-27240)
* bpo-44765: [doc] fix typo (GH-27430)Pavel2021-07-291-1/+1
|
* bpo-44725 : expose specialization stats in python (GH-27192)Irit Katriel2021-07-297-1/+158
|
* bpo-44752: refactor part of rlcompleter.Completer.attr_matches (GH-27433)Jack DeVries2021-07-291-6/+3
|
* bpo-44752: Make rlcompleter not call `@property` methods (GH-27401)Jack DeVries2021-07-293-4/+40
| | | | | | | | * rlcompleter was calling these methods to identify whether to add parenthesis to the completion, based on if the attribute is callable. * for property objects, completion with parenthesis are never desirable. * property methods with print statements behaved very strangely, which was especially unfriendly to language newcomers. <tab> could suddenly produce output unexpectedly.
* bpo-44707: Fix an undefined behavior of the null pointer arithmetic (GH-27292)Serhiy Storchaka2021-07-291-2/+9
|
* bpo-41103: Resurrect the old buffer protocol. (GH-27437)Inada Naoki2021-07-2910-5/+221
| | | | | Revert "bpo-41103: Remove old buffer protocol support (#21117)" This reverts commit 6f8a6ee59cb7f99f68df8ee9c3e8c8cf19af3eed.
* bpo-42064: Optimise `sqlite3` state access, part 1 (GH-27273)Erlend Egeberg Aasland2021-07-2913-66/+103
| | | | | | | | | | Prepare for module state: - Add "get state by defining class" and "get state by module def" stubs - Add AC defining class when needed - Add state pointer to connection context - Pass state as argument to utility functions Automerge-Triggered-By: GH:encukou
* bpo-43565: Document PyUnicode_KIND's return type as an unsigned int (GH-25724)Ammar Askar2021-07-291-1/+1
|
* bpo-42035: Add a PyType_GetName() to get type's short name. (GH-23903)Hai Shi2021-07-2910-0/+68
|
* bpo-44688: Remove ASCII limitation from `sqlite3` collation names (GH-27395)Erlend Egeberg Aasland2021-07-297-60/+35
|
* bpo-43897: Reject "_" captures and top-level MatchStar in the AST validator ↵Brandt Bucher2021-07-292-21/+33
| | | | (GH-27432)
* bpo-40263: Fixes an off-by-one error in _winapi_WaitForMultipleObjects_impl ↵Ray Donnelly2021-07-282-1/+4
| | | | (GH-19501)
* bpo-43897: AST validation for pattern matching nodes (GH24771)Batuhan Taskaya2021-07-282-32/+265
|
* bpo-44682: Handle invalid arg to pdb's "commands" directive (#27252)andrei kulakov2021-07-283-0/+19
|
* bpo-44763: [doc] remove repetitive sentence from textwrap.wrap (GH-27423)Jack DeVries2021-07-281-1/+1
|
* bpo-44544: [doc] list all textwrap func kwargs (GH-26999)Jack DeVries2021-07-282-4/+18
|
* bpo-27827: identify a greater range of reserved filename on Windows. (GH-26698)Barney Gale2021-07-283-19/+47
| | | | | | | `pathlib.PureWindowsPath.is_reserved()` now identifies as reserved filenames with trailing spaces or colons. Co-authored-by: Barney Gale <barney.gale@foundry.com> Co-authored-by: Eryk Sun <eryksun@gmail.com>
* Add missing end of sentence in docs (GH-27280)Adrian Garcia Badaracco2021-07-281-1/+1
|
* Fix typo in sqlite3.rst (GH-27415)Ikko Ashimine2021-07-281-1/+1
| | | preceeding -> preceding
* Change type check to isinstance in pipes (GH-27291)Anton Grübel2021-07-281-2/+2
|
* Spell out 's.pop() or s.pop(i)' (GH-27398)Dennis Sweeney2021-07-281-1/+1
|
* bpo-44756: in ./Doc, `make build` depends on `make html` (#27403)Jack DeVries2021-07-283-20/+29
| | | | - venv rule is now conditional, and only does anything if $VENVDIR does not exist - add rule "clean-venv"
* bpo-44657: Fix instancemethod_call to use PyInstanceMethod_GET_FUNCTION ↵Dong-hee Na2021-07-281-1/+1
| | | | (GH-27202)
* bpo-44399: Document another example of unexpected behavior. (GH-27407)Vinay Sajip2021-07-281-1/+3
|
* bpo-44461: Check early that a pdb target is valid for execution. (#27227)Jason R. Coombs2021-07-283-1/+20
| | | | | | | | | | | | | | | * bpo-44461: Fix bug with pdb's handling of import error due to a package which does not have a __main__ module * 📜🤖 Added by blurb_it. * remove "else" Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> * If running as a module, first check that it can run as a module. Alternate fix for bpo-44461. Co-authored-by: Irit Katriel <iritkatriel@yahoo.com> Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
* bpo-44600: Refactor new tracing tests (GH-27396)Brandt Bucher2021-07-281-67/+74
|
* closes bpo-44751: Move crypt.h include from public header to _cryptmodule ↵Geoffrey Thomas2021-07-273-13/+4
| | | | | (GH-27394) Automerge-Triggered-By: GH:benjaminp
* bpo-34013: Move the Python 2 hints from the exception constructor to the ↵Pablo Galindo Salgado2021-07-275-224/+28
| | | | parser (GH-27392)
* bpo-34013: Generalize the invalid legacy statement error message (GH-27389)Pablo Galindo Salgado2021-07-276-244/+337
|
* bpo-44559: [Enum] correct `versionadded` to 3.11 for new features (GH-27388)Steffen Zeile2021-07-271-6/+6
|
* bpo-42064: Migrate to `sqlite3_create_collation_v2` (GH-27156)Erlend Egeberg Aasland2021-07-272-27/+17
| | | | | | This implies that SQLite now takes care of destroying the callback context (the PyObject callable it has been passed), so we can strip the collation dict from the connection object.
* bpo-44740: Make minor edits to lowercasing "internet" and "web". (GH-27385)Mariusz Felisiak2021-07-274-4/+4
| | | Follow up to 11749e2dc20ad6a76e9a39e948853e89b2b4bbed
* Add windows build.bat counterpart for 'make regen-all' in error message ↵Ken Jin2021-07-271-1/+1
| | | | (GH-26770)
* [doc] Fix typo in asyncio Event Loop (GH-27377)Vinicius Gubiani Ferreira2021-07-271-1/+1
| | | | | First Pull Request to cpython, so forgive me for any mistakes Automerge-Triggered-By: GH:Mariatta
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-2661-107/+109
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* Fix typos in `Weekday.today` example (GH-27363)Steffen Zeile2021-07-261-1/+1
|
* bpo-44515: handle non-refcounted GC in contextlib tests (GH-26910)Nick Coghlan2021-07-263-6/+13
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>