Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-42958: Improve description of shallow= in filecmp.cmp docs (GH-27166) | andrei kulakov | 2021-08-04 | 3 | -4/+10 |
| | | | | Co-authored-by: Łukasz Langa <lukasz@langa.pl> Co-authored-by: Alexander Vandenbulcke <alexander.vandenbulcke95@gmail.com> | ||||
* | [doc] bpo-43066: zipfile - add note on leading slash in the filename arg ↵ | andrei kulakov | 2021-08-04 | 2 | -1/+7 |
| | | | | | (GH-26899) Co-authored-by: Łukasz Langa <lukasz@langa.pl> | ||||
* | Fix typo in 'xml.dom.minidom' documentation (GH-27602) | Cristián Maureira-Fredes | 2021-08-04 | 1 | -1/+1 |
| | |||||
* | bpo-44564 Move formatted assertion under deprecation warning context (GH-27090) | Brandon Schabell | 2021-08-04 | 1 | -1/+1 |
| | |||||
* | Fix 404 link to the pyporting mailing list (GH-27320) | Rohit Nishad | 2021-08-04 | 1 | -3/+3 |
| | | | | Co-authored-by: Mariatta Wijaya <Mariatta@users.noreply.github.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl> | ||||
* | bpo-44801: Check arguments in substitution of ParamSpec in Callable (GH-27585) | Serhiy Storchaka | 2021-08-04 | 4 | -37/+89 |
| | |||||
* | Note that tp_clear and m_clear are not always called (GH-27581) | Petr Viktorin | 2021-08-04 | 2 | -0/+12 |
| | |||||
* | Fix hyperlink conflict in turtle docs (GH-27592) | Harry | 2021-08-04 | 1 | -12/+16 |
| | |||||
* | bpo-41117: Cleanup subtract_refs() (GH-27593) | Victor Stinner | 2021-08-04 | 1 | -3/+3 |
| | | | | | | subtract_refs() reuses the 'op' variable rather than calling the FROM_GC() macro twice. Issue reported by William Pickard. | ||||
* | bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589) | Mark Shannon | 2021-08-04 | 6 | -8/+49 |
| | |||||
* | Add option to write specialization stats to files and script to summarize. ↵ | Mark Shannon | 2021-08-04 | 4 | -12/+75 |
| | | | | | | | (GH-27575) * Add option to write stats to random file in a directory. * Add script to summarize stats. | ||||
* | bpo-41886: Fix documented type of PyType_Type (GH-22454) | da-woods | 2021-08-03 | 1 | -1/+1 |
| | |||||
* | Ensure LICENSE.txt file is generated even in PGO builds (GH-27580) | Steve Dower | 2021-08-03 | 1 | -4/+3 |
| | |||||
* | bpo-44808: fixes test for interactive inspect getsource of a class (GH-27571) | andrei kulakov | 2021-08-03 | 1 | -12/+8 |
| | | | Co-authored-by: Łukasz Langa <lukasz@langa.pl> | ||||
* | bpo-41737: expand doc for NotADirectoryError (GH-27471) | andrei kulakov | 2021-08-03 | 1 | -2/+4 |
| | |||||
* | bpo-27275: Change popitem() and pop() methods of collections.OrderedDict ↵ | Serhiy Storchaka | 2021-08-03 | 4 | -71/+124 |
| | | | | | | | | | | | | | | | | | (GH-27530) * Unify the C and Python implementations of OrderedDict.popitem(). The C implementation no longer calls ``__getitem__`` and ``__delitem__`` methods of the OrderedDict subclasses. * Change popitem() and pop() methods of collections.OrderedDict For consistency with dict both implementations (pure Python and C) of these methods in OrderedDict no longer call __getitem__ and __delitem__ methods of the OrderedDict subclasses. Previously only the Python implementation of popitem() did not call them. | ||||
* | closes bpo-39091: Fix segfault when Exception constructor returns ↵ | Noah | 2021-08-03 | 4 | -4/+44 |
| | | | | | non-exception for gen.throw. (#17658) Co-authored-by: Benjamin Peterson <benjamin@python.org> | ||||
* | bpo-44782: Improve OrderedDict recipe for LRU cache variants (GH-27536) | Raymond Hettinger | 2021-08-02 | 1 | -16/+32 |
| | |||||
* | bpo-44792: Improve syntax errors for if expressions (GH-27506) | Miguel Brito | 2021-08-02 | 5 | -0/+48 |
| | |||||
* | bpo-35183: Add typical examples to os.path.splitext docs (GH-27286) | Jake Stockwin | 2021-08-02 | 2 | -7/+27 |
| | |||||
* | Document PyMember_GetOne and PyMember_SetOne (GH-27555) | Ken Jin | 2021-08-02 | 1 | -0/+15 |
| | |||||
* | bpo-44806: Fix __init__ in subclasses of protocols (GH-27545) | Serhiy Storchaka | 2021-08-02 | 3 | -2/+48 |
| | | | | Non-protocol subclasses of protocol ignore now the __init__ method inherited from protocol base classes. | ||||
* | bpo-44785: Silence deprecation warnings in test_pickle (#27538) | Serhiy Storchaka | 2021-08-02 | 1 | -1/+5 |
| | |||||
* | build(deps): bump actions/stale from 3 to 4 (#27526) | dependabot[bot] | 2021-08-02 | 1 | -1/+1 |
| | | | | | | | | Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v3...v4) Signed-off-by: dependabot[bot] <support@github.com> | ||||
* | bpo-44206: Make sure that dict-keys's version is set to zero when value is ↵ | Mark Shannon | 2021-08-02 | 2 | -0/+13 |
| | | | | popped (GH-27542) | ||||
* | bpo-44808: Fix test_inspect in refleak mode (GH-27544) | Pablo Galindo Salgado | 2021-08-02 | 1 | -1/+2 |
| | |||||
* | doc: "Mac OS X" -> "macOS" (GH-27535) | partev | 2021-08-02 | 1 | -3/+3 |
| | |||||
* | doc: "Mac OS " -> "macOS" (GH-27534) | partev | 2021-08-02 | 1 | -1/+1 |
| | |||||
* | bpo-44781: make distutils test suppress deprecation warning from import ↵ | Irit Katriel | 2021-08-02 | 1 | -2/+5 |
| | | | | distutils (GH-27485) | ||||
* | bpo-44793: Fix checking the number of arguments when subscribe a generic ↵ | Serhiy Storchaka | 2021-08-02 | 3 | -8/+15 |
| | | | | | | | | type with ParamSpec parameter. (GH-27515) For example Callable[P, T][[int], str, float] will now raise an error. Use also term "arguments" instead of "parameters" in error message for too few/many arguments. | ||||
* | bpo-34013: Don't consider a grouped expression when reporting legacy print ↵ | Pablo Galindo Salgado | 2021-08-01 | 3 | -6/+17 |
| | | | | syntax errors (GH-27521) | ||||
* | bpo-33671 fix orphaned comment in shutil.copyfileobj (GH-27516) | Anthony Sottile | 2021-07-31 | 1 | -1/+1 |
| | |||||
* | bpo-44794: Merge tests for typing.Callable and collection.abc.Callable ↵ | Serhiy Storchaka | 2021-07-31 | 3 | -117/+141 |
| | | | | (GH-27507) | ||||
* | bpo-37880: for argparse add_argument with action='store_const', const now ↵ | Jack DeVries | 2021-07-31 | 4 | -13/+41 |
| | | | | defaults to None. (GH-26707) | ||||
* | bpo-44784: Apply changes from importlib_metadata 4.6.3 (GH-27508) | Jason R. Coombs | 2021-07-31 | 2 | -6/+14 |
| | | | | | Addressing issues with tests under error on warnings. Automerge-Triggered-By: GH:jaraco | ||||
* | Divide the grammar into sections to improve readability (GH-27502) | Pablo Galindo Salgado | 2021-07-31 | 2 | -6806/+7029 |
| | |||||
* | Trivial typo in docstring | Jesús Cea | 2021-07-31 | 1 | -1/+1 |
| | |||||
* | bpo-44667: Treat correctly lines ending with comments and no newlines in the ↵ | Pablo Galindo Salgado | 2021-07-31 | 3 | -1/+15 |
| | | | | Python tokenizer (GH-27499) | ||||
* | bpo-44771: Sync with importlib_resources 5.2.2, fixing refleak. (#27497) | Jason R. Coombs | 2021-07-31 | 2 | -3/+6 |
| | | | | | * bpo-44771: Sync with importlib_resources 5.2.2, fixing refleak. * Include new 'resources' dir in the Makefile. | ||||
* | bpo-44648: Fix error type in inspect.getsource() in interactive session ↵ | andrei kulakov | 2021-07-30 | 3 | -1/+21 |
| | | | | (GH-27171) | ||||
* | bpo-43625: Enhance csv sniffer has_headers() to be more accurate (GH-26939) | andrei kulakov | 2021-07-30 | 4 | -8/+56 |
| | |||||
* | bpo-42892: fix email multipart attribute error (GH-26903) | andrei kulakov | 2021-07-30 | 3 | -3/+36 |
| | |||||
* | bpo-41911: Update docs for various expressions (GH-27470) | andrei kulakov | 2021-07-30 | 1 | -7/+34 |
| | | | Co-authored-by: Łukasz Langa <lukasz@langa.pl> | ||||
* | bpo-44666: Use default encoding as fallback for compile_file (GH-27236) | Stefan Hoelzl | 2021-07-30 | 4 | -3/+13 |
| | | | | | | | When sys.stdout.encoding is None compile_file will fall back to sys.getdefaultencoding to encode/decode error messages. Co-authored-by: Stefan Hoelzl <stefan.hoelzl@posteo.de> Co-authored-by: Mickaël Schoentgen <contact@tiger-222.fr> | ||||
* | Fail the CI if an optional module fails to compile (GH-27466) | Pablo Galindo Salgado | 2021-07-30 | 3 | -0/+8 |
| | |||||
* | Doc: Change errant 3.10.0 to 3.10, to match other mentions (GH-27459) | Ori Avtalion | 2021-07-30 | 1 | -2/+2 |
| | |||||
* | Update URLs in comments and metadata to use HTTPS (GH-27458) | Noah Kantrowitz | 2021-07-30 | 39 | -58/+58 |
| | |||||
* | bpo-44747: Refactor usage of sys._getframe at typing module (#27387) | Yurii Karabas | 2021-07-30 | 2 | -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 Karabas | 2021-07-30 | 2 | -4/+12 |
| | |||||
* | bpo-44753: Don't use logfile extension when determining old files to be ↵ | Vinay Sajip | 2021-07-30 | 1 | -1/+2 |
| | | | | deleted (GH-27475) |