Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [3.9] bpo-42042: Use ids attribute instead of names attribute (GH-22739) ↵ | Dong-hee Na | 2020-11-13 | 1 | -2/+2 |
| | | | | | | | (GH-23265) (cherry picked from commit 09490a109faaee9cc393b52742a8575c116c56ba) Co-authored-by: Dong-hee Na <donghee.na@python.org> | ||||
* | Expand and clarify the "Invoking Descriptors" section of the Descriptor ↵ | Miss Skeleton (bot) | 2020-11-01 | 1 | -1/+1 |
| | | | | HowTo (GH-23078) (GH-23080) | ||||
* | bpo-42061: Document __format__ for IP addresses (GH-23018) | Miss Skeleton (bot) | 2020-10-29 | 1 | -2/+4 |
| | | | | | | Automerge-Triggered-By: GH:ericvsmith (cherry picked from commit 3317466061509c83dce257caab3661d52571cab1) Co-authored-by: Teugea Ioan-Teodor <teodor.teugea@gmail.com> | ||||
* | Create a primer section for the descriptor howto guide (GH-22906) (GH0-22918) | Miss Skeleton (bot) | 2020-10-23 | 1 | -0/+3 |
| | |||||
* | [3.9] Remove 3.5 from Doc version switcher in master. (GH-22886) (#22888) | larryhastings | 2020-10-22 | 2 | -2/+0 |
| | | | (cherry picked from commit 283f9a253b4ff4df728558205629b3bb3af6e47f) | ||||
* | Doc: Do not suggest `s[::-1]` for reversed order (GH-22457) | Miss Skeleton (bot) | 2020-10-21 | 1 | -1/+0 |
| | | | | | (cherry picked from commit fb2e94692e3a8eb66915575f4a122d56fe8999a0) Co-authored-by: Andre Delfino <adelfino@gmail.com> | ||||
* | bpo-35293: Remove RemovedInSphinx40Warning (GH-22198) | Miss Islington (bot) | 2020-09-18 | 1 | -15/+21 |
| | | | | | | | | | | | | | | * bpo-35293: Remove RemovedInSphinx40Warning * Update Misc/NEWS.d/next/Documentation/2020-09-12-17-37-13.bpo-35293._cOwPD.rst Co-authored-by: Victor Stinner <vstinner@python.org> * bpo-35293: Apply Victor's review Co-authored-by: Victor Stinner <vstinner@python.org> (cherry picked from commit 6595cb0af4c51c0381c233b97884fe916a4ddd35) Co-authored-by: Dong-hee Na <donghee.na92@gmail.com> | ||||
* | Fix invalid escape sequences in the peg_highlight Sphinx extension ↵ | Miss Islington (bot) | 2020-09-02 | 1 | -1/+1 |
| | | | | | | | | | (GH-22047) (GH-22065) (cherry picked from commit 5a4a963a6c798fa9207a9998618a9c0ec3b6b6d7) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> | ||||
* | [3.9] bpo-40939: Use the new grammar for the grammar specification ↵ | Guido van Rossum | 2020-07-27 | 1 | -0/+75 |
| | | | | | | | | | documentation (GH-19969) (#21641) (We censor the heck out of actions and some other stuff using a custom "highlighter".) (cherry picked from commit 72cabb2aa636272e608285f5a6ba83b62be9be4e) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> | ||||
* | Doc: fix import of asdl.py when called from outside Doc/. (GH-21529) (#21567) | Miss Islington (bot) | 2020-07-20 | 1 | -1/+4 |
| | | | | | (cherry picked from commit 7f03445d01d5ece41c2ceef7254002e08e8ab5a5) Co-authored-by: Julien Palard <julien@palard.fr> | ||||
* | bpo-40798: Generate a different message for already removed elements (GH-20483) | Miss Islington (bot) | 2020-05-30 | 2 | -2/+12 |
| | | | | | (cherry picked from commit 735d902b363b759df9ff00e58bbf4f7e2bde78cd) Co-authored-by: Florian Dahlitz <f2dahlitz@freenet.de> | ||||
* | [3.9] Doc: Python 3.10 in sidebar and version switcher. (GH-20209) (GH-20221) | Miss Islington (bot) | 2020-05-19 | 2 | -2/+4 |
| | | | | | | (cherry picked from commit 19e3e0026417caa92ffe21a67157363b45da9aa2) Co-authored-by: Julien Palard <julien@palard.fr> | ||||
* | Python 3.9.0b1v3.9.0b1 | Łukasz Langa | 2020-05-18 | 1 | -1/+1 |
| | |||||
* | bpo-40517: Implement syntax highlighting support for ASDL (GH-19967) | Batuhan Taskaya | 2020-05-07 | 1 | -0/+51 |
| | |||||
* | Revert "bpo-40517: Implement syntax highlighting support for ASDL (#19928)" ↵ | Raymond Hettinger | 2020-05-06 | 1 | -51/+0 |
| | | | | | (#19950) This reverts commit d60040ba226bd2e3b6f58d074015aa2499dc1cb8. | ||||
* | bpo-40517: Implement syntax highlighting support for ASDL (#19928) | Batuhan Taskaya | 2020-05-06 | 1 | -0/+51 |
| | |||||
* | Fix download.html (GH-18902) | Inada Naoki | 2020-03-11 | 1 | -1/+1 |
| | | | | | `<tt>` is not allowed. Co-authored-by: Kyle Stanley <aeros167@gmail.com> | ||||
* | bpo-34822: Simplify AST for subscription. (GH-9605) | Serhiy Storchaka | 2020-03-10 | 1 | -0/+2 |
| | | | | | | | | | * Remove the slice type. * Make Slice a kind of the expr type instead of the slice type. * Replace ExtSlice(slices) with Tuple(slices, Load()). * Replace Index(value) with a value itself. All non-terminal nodes in AST for expressions are now of the expr type. | ||||
* | bpo-34788: Add support for scoped IPv6 addresses (GH-13772) | opavlyuk | 2020-02-26 | 1 | -0/+2 |
| | | | Automerge-Triggered-By: @asvetlov | ||||
* | Doc: Change Python 2 status to EOL. (GH-17885) | Inada Naoki | 2020-01-07 | 1 | -1/+1 |
| | |||||
* | Remove use of deprecated `array.fromstring` method (GH-17332) | David Coles | 2019-11-26 | 1 | -1/+1 |
| | |||||
* | bpo-38738: Fix formatting of True and False. (GH-17083) | Serhiy Storchaka | 2019-11-12 | 1 | -2/+2 |
| | | | | | | | | | * "Return true/false" is replaced with "Return ``True``/``False``" if the function actually returns a bool. * Fixed formatting of some True and False literals (now in monospace). * Replaced "True/False" with "true/false" if it can be not only bool. * Replaced some 1/0 with True/False if it corresponds the code. * "Returns <bool>" is replaced with "Return <bool>". | ||||
* | bpo-38592 Add pt-br switcher to Python Docs website (GH-16924) | Marco Rougeth | 2019-10-27 | 1 | -0/+1 |
| | | | | * 📜🤖 Added by blurb_it. | ||||
* | bpo-38557: Improve documentation for list and tuple C API. (GH-16925) | Serhiy Storchaka | 2019-10-26 | 1 | -0/+1 |
| | |||||
* | Update doc switcher list for 3.8.0 (GH-16809) | Ned Deily | 2019-10-15 | 1 | -1/+1 |
| | |||||
* | Doc: 3.8 is now stable. (GH-16790) | Julien Palard | 2019-10-14 | 1 | -1/+1 |
| | |||||
* | bpo-38294: Add list of no-longer-escaped chars to re.escape documentation. ↵ | Ricardo Bánffy | 2019-10-07 | 1 | -0/+1 |
| | | | | | | | | | (GH-16442) Prior to 3.7, re.escape escaped many characters that don't have special meaning in Python, but that use to require escaping in other tools and languages. This commit aims to make it clear which characters were, but are no longer escaped. | ||||
* | bpo-36675: Remove obsolete code. (GH-16024) | Julien Palard | 2019-09-12 | 1 | -32/+0 |
| | | | | Does no longer work since Sphinx moved the trim_doctest_flag option in the configuration. | ||||
* | bpo-33187: Document ElementInclude (XInclude) support in ElementTree (GH-8861) | Anjali Bansal | 2019-09-11 | 1 | -0/+3 |
| | |||||
* | bpo-37504: Fix documentation build with texinfo builder (GH-14606) | Dmitry Shachnev | 2019-09-10 | 1 | -0/+1 |
| | | | | | | | | | In the table model used by docutils, the `cols` attribute of `tgroup` nodes is mandatory, see [1]. It is used in texinfo builder in [2]. [1]: https://www.oasis-open.org/specs/tm9901.htm#AEN348 [2]: https://github.com/sphinx-doc/sphinx/blob/v2.1.2/sphinx/writers/texinfo.py#L1129 * Doc: Add texinfo support to the Makefile | ||||
* | bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840) | Jason R. Coombs | 2019-09-10 | 1 | -1/+1 |
| | | | https://gitlab.com/python-devs/importlib_metadata/-/tags/0.21 | ||||
* | Doc: Fix PDF build (NoUri). (GH-15739) | Julien Palard | 2019-09-09 | 1 | -4/+11 |
| | |||||
* | bpo-36853: Fix suspicious.py to actually print the unused rules (#13579) | Anthony Sottile | 2019-09-02 | 1 | -11/+14 |
| | | | | | | * Fix suspicious.py to actually print the unused rules * Fix the other `self.warn` calls | ||||
* | Bpo-37644: update suspicious.csv for distutils/examples (GH-14885) | Ned Deily | 2019-07-21 | 1 | -1/+1 |
| | |||||
* | Replace backquote with command substitution in subprocess doc example (GH-13941) | David Jones | 2019-07-16 | 1 | -2/+0 |
| | | | Replace backquotes with POSIXy command substitution in example. | ||||
* | bpo-37363: Add audit events on startup for the run commands (GH-14524) | Steve Dower | 2019-07-01 | 1 | -8/+14 |
| | |||||
* | bpo-37390: Add audit event table to documentations (GH-14406) | Steve Dower | 2019-06-27 | 1 | -11/+131 |
| | | | Also updates some (unreleased) event names to be consistent with the others. | ||||
* | bpo-37363: Add audit events for a range of modules (GH-14301) | Steve Dower | 2019-06-24 | 1 | -5/+5 |
| | |||||
* | bpo-37111: Add 'encoding' and 'errors' parameters to logging.basicCon… ↵ | Vinay Sajip | 2019-06-17 | 1 | -0/+2 |
| | | | | (GH-14008) | ||||
* | Doc: Remove an ugly space before a dot. (GH-14123) | Julien Palard | 2019-06-16 | 1 | -1/+1 |
| | |||||
* | Doc: Deprecation header: More precise wording. (GH-14109) | Julien Palard | 2019-06-15 | 1 | -1/+1 |
| | |||||
* | Doc: Python 3.9 in sidebar and version switcher. (GH-13824) | Julien Palard | 2019-06-04 | 2 | -2/+4 |
| | |||||
* | Bump to 3.9.0a0 | Łukasz Langa | 2019-06-04 | 1 | -1/+1 |
| | |||||
* | Python 3.8.0b1v3.8.0b1 | Łukasz Langa | 2019-06-04 | 1 | -1/+1 |
| | |||||
* | Doc: Add an optional obsolete header. (GH-13638) | Julien Palard | 2019-05-29 | 1 | -0/+10 |
| | |||||
* | bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) ↵ | Matthias Bussonnier | 2019-05-28 | 1 | -1/+0 |
| | | | | | | | | | | (GH-13577) It has been documented as deprecated and to be removed in 3.8; From a comment on another thread – which I can't find ; leave get_coro_wrapper() for now, but always return `None`. https://bugs.python.org/issue36933 | ||||
* | bpo-35397: Remove deprecation and document urllib.parse.unwrap (GH-11481) | Rémi Lapeyre | 2019-05-27 | 1 | -0/+2 |
| | |||||
* | Fix highlighting in importlib.metadata docs (GH-13575) | Anthony Sottile | 2019-05-26 | 1 | -1/+0 |
| | |||||
* | bpo-34632: Add importlib.metadata (GH-12547) | Jason R. Coombs | 2019-05-24 | 1 | -0/+3 |
| | | | Add importlib.metadata module as forward port of the standalone importlib_metadata. | ||||
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 1 | -0/+40 |
| | | | Adds sys.audit, sys.addaudithook, io.open_code, and associated C APIs. |