Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-44613: Make importlib.metadata non-provisional (#27101) | Barry Warsaw | 2021-07-12 | 1 | -0/+1 |
| | | | | * importlib.metadata is no longer provisional as of 3.10 * Add NEWS entry | ||||
* | bpo-44558: Match countOf `is`/`==` treatment to c (GH-27007) | Rupert Tombs | 2021-07-07 | 1 | -0/+2 |
| | |||||
* | bpo-38062: [doc] clarify that atexit uses equality comparisons internally. ↵ | Jack DeVries | 2021-06-29 | 1 | -0/+1 |
| | | | | (GH-26935) | ||||
* | bpo-40620: Clarify tutorial controlflow.rst ``range`` examples (GH-26919) | jdevries3133 | 2021-06-27 | 1 | -0/+2 |
| | |||||
* | bpo-41621: Document defaultdict's default_factory parameter (GH-21945) | Dennis Sweeney | 2021-06-22 | 1 | -0/+1 |
| | | | It defaults to None and is positional only. | ||||
* | bpo-13814: Explain why generators are not context managers (GH-26835) | Terry Jan Reedy | 2021-06-21 | 1 | -0/+1 |
| | | | | | Put entry in Design FAQ after a question about a context manager for assignment. Original patch by Aidan Lowe. | ||||
* | bpo-44392: Add Py_GenericAlias to C API docs (GH-26724) | Ken Jin | 2021-06-16 | 1 | -0/+2 |
| | | | | Also fix stable ABI type definitions | ||||
* | bpo-38291: Remove mention of typing.io and typing.re again (GH-26113) | Sebastian Rittau | 2021-06-14 | 1 | -0/+2 |
| | | | | | They were originally removed in GH-10173 per bpo-35089, but then readded in GH-21574. Cf. bpo-38291 for decision to remove. | ||||
* | bpo-21760: fix __file__ description (GH-19097) | Furkan Onder | 2021-06-09 | 1 | -0/+2 |
| | |||||
* | bpo-44322: Document more SyntaxError details. (GH-26562) | Terry Jan Reedy | 2021-06-07 | 1 | -0/+2 |
| | | | | | | 1. SyntaxError args have a tuple of other attributes. 2. Attributes are adjusted for errors in f-string field expressions. 3. Compile() can raise SyntaxErrors. | ||||
* | bpo-42392: [docs] Add deprecated-removed loop labels for asyncio (GH-26357) | Ken Jin | 2021-05-26 | 1 | -0/+2 |
| | | | | * Add deprecated-removed loop labels for all reelvant functions/classes in asyncio | ||||
* | bpo-44195: Use 'TraversableResources' in the docs to match the ↵ | Jason R. Coombs | 2021-05-24 | 1 | -0/+2 |
| | | | | implementation. (GH-26317) | ||||
* | bpo-41963: document that ConfigParser strips off comments (GH-26197) | Jürgen Gmach | 2021-05-18 | 1 | -0/+1 |
| | | | | Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Laura Gutierrez Funderburk <58710704+lgfunderburk@users.noreply.github.com> | ||||
* | bpo-44072: fix Complex, Integral docs for `**` (GH-25986) | Rory Yorke | 2021-05-14 | 1 | -0/+2 |
| | | | | In numbers module docstrings and docs. | ||||
* | bpo-43558: Add note about base class initialization to dataclasses doc ↵ | dhoekstra2000 | 2021-05-10 | 1 | -0/+2 |
| | | | | (GH-25967) | ||||
* | Add the blurbify of the 3.10.0b1 changelog to the main branch (GH-25976) | Ned Deily | 2021-05-08 | 7 | -12/+0 |
| | |||||
* | bpo-44025: Clarify when '_' is a keyword. (#25873) | Terry Jan Reedy | 2021-05-04 | 1 | -0/+1 |
| | | | | | In match statements, in case patterns and nowhere else. Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> | ||||
* | bpo-43977: Document the new pattern matching type flags (GH-25734) | Brandt Bucher | 2021-05-02 | 1 | -0/+2 |
| | |||||
* | bpo-43987: Add "Annotations Best Practices" HOWTO doc. (#25746) | larryhastings | 2021-05-02 | 1 | -0/+1 |
| | | | Add "Annotations Best Practices" HOWTO doc. | ||||
* | bpo-43959: clarify the documentation of the PyContextVar C-API (GH-25671) | scoder | 2021-04-28 | 1 | -0/+1 |
| | | | Automerge-Triggered-By: GH:scoder | ||||
* | bpo-43938: improve dataclasses.FrozenInstanceError documentation (GH-25603) | Llandy Riveron Del Risco | 2021-04-26 | 1 | -0/+2 |
| | |||||
* | bpo-43739: Add type declaration Doc/extending/extending.rst example | Shreyan Avigyan | 2021-04-10 | 1 | -0/+1 |
| | |||||
* | bpo-43778: Fix Sphinx glossary_search extension (GH-25286) | Victor Stinner | 2021-04-08 | 1 | -0/+2 |
| | | | | | Create the _static/ directory if it doesn't exist. Add also constants for the static directory and the JSON filename. | ||||
* | bpo-43755: Update docs to reflect that lambda is not allowed in `comp_if` ↵ | Saiyang Gou | 2021-04-06 | 1 | -0/+3 |
| | | | | since 3.9 (GH-25231) | ||||
* | Python 3.10.0a7v3.10.0a7 | Pablo Galindo | 2021-04-05 | 4 | -7/+0 |
| | |||||
* | bpo-43354: xmlrpc: Fix type documentation for Fault.faultCode (GH-24707) | Jürgen Gmach | 2021-03-26 | 1 | -0/+1 |
| | | | | | | | The type of `faultCode` has to be an `int` instead of a `str`. cf http://xmlrpc.com/spec.md Pinging @pganssle | ||||
* | bpo-41933: Clarify wording for s * n in Common Sequence Operations (GH-22570) | Chavdar Yotov | 2021-03-15 | 1 | -0/+1 |
| | |||||
* | bpo-43199: Briefly explain why no goto (GH-24852) | Terry Jan Reedy | 2021-03-14 | 1 | -0/+1 |
| | | | | Answer "Why is there no goto?" in the Design and History FAQ. | ||||
* | bpo-43407: Clarify comparisons of time.monotonic() et al results (GH-24757) | Alex Willmer | 2021-03-06 | 1 | -0/+4 |
| | | | | Previous wording implied that only the result of call N and N+1 could be meaningfully compared, whereas comparing call N and N+M is fine. | ||||
* | Python 3.10.0a6 | Pablo Galindo | 2021-03-01 | 2 | -4/+0 |
| | |||||
* | bpo-36346: Document removal schedule of deprecate APIs (GH-20879) | Inada Naoki | 2021-02-22 | 1 | -0/+2 |
| | | | We will remove wstr cache in Python 3.12. See PEP 623. | ||||
* | bpo-27646: Say that 'yield from' expression can be any iterable (GH-24595) | Terry Jan Reedy | 2021-02-21 | 1 | -0/+2 |
| | | | Previously, the doc at least strongly implied that it had to be an iterator. | ||||
* | Python 3.10.0a5 | Pablo Galindo | 2021-02-02 | 2 | -4/+0 |
| | |||||
* | bpo-40304: Correct type(name, bases, dict) doc (GH-19553) | Борис Верховский | 2021-01-22 | 1 | -0/+2 |
| | | | | | Co-authored-by: Éric Araujo <merwok@netwok.org> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Tal Einat <532281+taleinat@users.noreply.github.com> | ||||
* | bpo-42811: Update importlib.utils.resolve_name() docs to use __spec__.parent ↵ | Yair Frid | 2021-01-06 | 1 | -0/+2 |
| | | | | | (GH-24100) Automerge-Triggered-By: GH:brettcannon | ||||
* | Python 3.10.0a4v3.10.0a4 | Pablo Galindo | 2021-01-04 | 2 | -3/+0 |
| | |||||
* | bpo-34398: Allow glossary results to show up on search page (GH-8773) | Ammar Askar | 2020-12-18 | 1 | -0/+2 |
| | |||||
* | bpo-17140: Document multiprocessing's ThreadPool (GH-23812) | Matt Wozniski | 2020-12-18 | 1 | -0/+1 |
| | | | | | Up until now, the `multiprocessing.pool.ThreadPool` class has gone undocumented, despite being a public class in multiprocessing that is included in `multiprocessing.pool.__all__`. | ||||
* | Python 3.10.0a3v3.10.0a3 | Pablo Galindo | 2020-12-07 | 3 | -5/+0 |
| | |||||
* | bpo-42238: Doc: Remove make suspicious from the CI and docs builds. (GH-23313) | Julien Palard | 2020-11-25 | 1 | -0/+2 |
| | | | | | It probably helped a lot a while back, but may not be as usefull today. We'll continue monitoring it before deletion, so true positives can be migrated to rstlint. | ||||
* | bpo-42153 Fix link to IMAP documents in imaplib.rst (GH-23297) | Yash Shete | 2020-11-16 | 1 | -0/+1 |
| | | | The University of Washington stopped hosting the IMAP documents. Link to a rescued copy on GitHub. | ||||
* | bpo-41028: Doc: Move switchers to docsbuild-scripts. (GH-20969) | Julien Palard | 2020-11-07 | 1 | -0/+2 |
| | |||||
* | Python 3.10.0a2v3.10.0a2 | Pablo Galindo | 2020-11-03 | 5 | -10/+0 |
| | |||||
* | bpo-42061: Document __format__ for IP addresses (GH-23018) | Teugea Ioan-Teodor | 2020-10-29 | 1 | -0/+1 |
| | | | Automerge-Triggered-By: GH:ericvsmith | ||||
* | bpo-41805: Documentation for PEP 585 (GH-22615) | kj | 2020-10-27 | 1 | -0/+3 |
| | |||||
* | bpo-39416: Document some restrictions on the default string representations ↵ | kpinc | 2020-10-21 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | of numeric classes (GH-18111) [bpo-39416](): Document string representations of the Numeric classes This is a change to the specification of the Python language. The idea here is to put sane minimal limits on the Python language's default representations of its Numeric classes. That way "Marty's Robotic Massage Parlor and Python Interpreter" implementation of Python won't do anything too crazy. Some discussion in the email thread: Subject: Documenting Python's float.__str__() https://mail.python.org/archives/list/python-dev@python.org/thread/FV22TKT3S2Q3P7PNN6MCXI6IX3HRRNAL/ | ||||
* | bpo-42010: [docs] Clarify subscription of types (GH-22822) | kj | 2020-10-20 | 1 | -0/+4 |
| | |||||
* | bpo-39693: mention KeyError in tarfile extractfile documentation (GH-18639) | Andrey Doroschenko | 2020-10-20 | 1 | -0/+1 |
| | | | Co-authored-by: Andrey Darascheka <andrei.daraschenka@leverx.com> | ||||
* | Python 3.10.0a1v3.10.0a1 | Pablo Galindo | 2020-10-05 | 13 | -18/+0 |
| | |||||
* | bpo-41428: Documentation for PEP 604 (gh-22517) | Fidget-Spinner | 2020-10-05 | 1 | -0/+1 |
| |