Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-100916: Convert argument to appropriate type (GH-100917) | Yao-Ching Huang | 2023-01-10 | 1 | -1/+1 |
| | |||||
* | Fix typos in Doc folder (#100880) | Semen Zhydenko | 2023-01-10 | 3 | -3/+3 |
| | |||||
* | bpo-28356: Document os.rename() behavior on Windows for differing volumes ↵ | Ryan Ozawa | 2023-01-09 | 1 | -0/+2 |
| | | | | (GH-27376) | ||||
* | GH-100813: Add `socket.IP_PKTINFO` constant (#10294) | dsentinel | 2023-01-09 | 1 | -0/+1 |
| | |||||
* | gh-87447: Fix walrus comprehension rebind checking (#100581) | Nikita Sobolev | 2023-01-08 | 1 | -0/+7 |
| | | | | Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com> Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> | ||||
* | GH-100485: Tweaks to sumprod() (GH-100857) | Raymond Hettinger | 2023-01-08 | 1 | -0/+6 |
| | |||||
* | Update copyright years to 2023. (gh-100848) | Benjamin Peterson | 2023-01-08 | 2 | -2/+2 |
| | |||||
* | gh-100783: fix os.path.join documentation (#100811) | Shantanu | 2023-01-08 | 1 | -11/+12 |
| | | | | | | - Use "drive", not "drive letter", because of UNC paths - Previous components are not thrown away from relative drive letters - Use "segment" instead of "component" for consistency with pathlib - Other miscellaneous improvements | ||||
* | gh-100824: Fix typo in the documentation of ↵ | busywhitespace | 2023-01-08 | 1 | -2/+2 |
| | | | | unittest.TestLoader.testNamePatterns (#100825) | ||||
* | GH-100485: Add math.sumprod() (GH-100677) | Raymond Hettinger | 2023-01-07 | 2 | -9/+18 |
| | |||||
* | gh-100673: Removed erroneous note in the get_type_hints docs (#100701) | FrozenBob | 2023-01-07 | 1 | -4/+0 |
| | | | | | Removed erroneous note in the get_type_hints docs typing.get_type_hints still includes base class type hints. | ||||
* | GH-99005: More intrinsics (GH-100774) | Mark Shannon | 2023-01-06 | 1 | -19/+3 |
| | | | * Remove UNARY_POSITIVE, LIST_TO_TUPLE and ASYNC_GEN_WRAP, replacing them with intrinsics. | ||||
* | gh-99026 update dataclasses docs for when annotations are inspected (gh-100798) | Akshit Tyagi | 2023-01-06 | 1 | -2/+2 |
| | | | update dataclasses docs for when annotations are inspected | ||||
* | gh-87691: clarify use of anchor in pathlib docs (#100782) | Shantanu | 2023-01-06 | 1 | -8/+8 |
| | | | | | | | | | | | This is feedback from https://github.com/python/cpython/pull/100737#discussion_r1062968696 This matches the wording from the `os.path.join` docs better: https://docs.python.org/3/library/os.path.html#os.path.join In particular, the previous use of "anchor" was incorrect given the pathlib definition of "anchor". Co-authored-by: Barney Gale <barney.gale@gmail.com> | ||||
* | gh-87691: add an absolute path pathlib example in / operator docs (GH-100737) | Shantanu | 2023-01-05 | 1 | -1/+8 |
| | | | | | The behaviour is fully explained a couple paragraphs above, but it may be useful to have a brief example to cover the behaviour. Automerge-Triggered-By: GH:hauntsaninja | ||||
* | GH-99005: Add `CALL_INTRINSIC_1` instruction (GH-100771) | Mark Shannon | 2023-01-05 | 1 | -23/+16 |
| | | | | | | | | * Remove PRINT_EXPR instruction * Remove STOPITERATION_ERROR instruction * Remove IMPORT_STAR instruction | ||||
* | GH-100766: Note that locale.LC_MESSAGES is not universal (GH-100702) | Tzu-ping Chung | 2023-01-05 | 1 | -0/+3 |
| | |||||
* | docs: fix `ssizeobjargproc` parameters (#100736) | David Lechner | 2023-01-04 | 1 | -1/+2 |
| | |||||
* | gh-91219: http - use subclassing to override index_pages attribute (GH-100731) | Ethan Furman | 2023-01-03 | 1 | -0/+5 |
| | | | Remove previously added parameter to `__init__`, and recommend subclassing to modify the `index_pages` attribute instead. | ||||
* | [Enum] docs: replace 'last value' by 'highest value' for Flag auto (GH-100709) | Christophe Nanteuil | 2023-01-03 | 1 | -3/+3 |
| | |||||
* | gh-100700: Remove Date and Release fields in past whatsnews (GH-100728) | Zachary Ware | 2023-01-03 | 3 | -6/+1 |
| | |||||
* | gh-81611: Improve `range` paragraph in 8.3 of language reference (#98353) | 4l4k4z4m | 2023-01-03 | 1 | -3/+2 |
| | | | | Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> | ||||
* | fix `grammer` -> `grammar` typo in expressions.rst (GH-100683) | Kumar Aditya | 2023-01-02 | 1 | -1/+1 |
| | | | Automerge-Triggered-By: GH:AlexWaygood | ||||
* | Fix deprecation doc for `PyEval_InitThreads` (#100667) | Alexander Shadchin | 2023-01-02 | 1 | -2/+2 |
| | |||||
* | gh-100428: Make int documentation more accurate (#100436) | Shantanu | 2023-01-02 | 1 | -11/+15 |
| | | | | | | | | | - Remove first link to lexical definition of integer literal, since it doesn't apply (differs in handling of leading zeros, base needs to be explicitly specified, unicode digits are allowed) - Better describe handling of leading zeros, unicode digits, underscores - Base 0 does not work exactly as like a code literal, since it allows Unicode digits. Link code literal to lexical definition of integer literal. | ||||
* | gh-99953: Purge mention of numeric param style from sqlite3 docs (#100630) | Erlend E. Aasland | 2023-01-01 | 1 | -5/+1 |
| | | | The PEP-249 numeric style has never been supported by sqlite3. | ||||
* | gh-97930: Apply changes from importlib_resources 5.10. (GH-100598) | Jason R. Coombs | 2023-01-01 | 1 | -19/+42 |
| | |||||
* | gh-100201: Document behavior with a bare `yield` statement (#100416) | ram vikram singh | 2023-01-01 | 1 | -1/+3 |
| | | | Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> | ||||
* | gh-96773 Fix documentation of socket backlog (#96778) | Mehrdad Moradizadeh | 2023-01-01 | 1 | -2/+2 |
| | |||||
* | gh-100488: Add is_integer method to fractions.Fraction (#100489) | Shantanu | 2023-01-01 | 1 | -0/+6 |
| | |||||
* | gh-100546: Remove incorrect positional-only marker from eval (#100547) | Shantanu | 2023-01-01 | 1 | -1/+1 |
| | | | | | | All the arguments are positional-only. The current status after #99476 seems to be to not use positional-only markers in documentation, hence I've simply removed it. | ||||
* | GH-87002: fix caching documentation in `struct` module (#24164) | Sandeep Subramanian | 2022-12-31 | 1 | -3/+3 |
| | |||||
* | gh-100633 Tutorial: Fix dataclasses import (#100638) | Owain Davies | 2022-12-31 | 1 | -1/+1 |
| | | | import dataclass not dataclasses from dataclasses | ||||
* | GH-85979: Clarify specification of `object.__await__` (#22320) | Paolo Lammens | 2022-12-31 | 1 | -0/+8 |
| | | | Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | ||||
* | Improve comments in itertools uniquification recipes (GH-100631) | Raymond Hettinger | 2022-12-31 | 1 | -7/+12 |
| | |||||
* | gh-100616: Document 'attr' parameter for window.vline() in curses module ↵ | mathieui | 2022-12-30 | 1 | -3/+3 |
| | | | | | (#24961) Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com> | ||||
* | gh-100583: Improve the `pydoc` documentation (#100590) | ram vikram singh | 2022-12-29 | 1 | -4/+4 |
| | |||||
* | GH-100101: Clarify documentation of zip's strict option (GH-100103) | JustAnotherArchivist | 2022-12-28 | 1 | -4/+14 |
| | |||||
* | Restore early-out to factor(). Strengthen tests. (GH-100591) | Raymond Hettinger | 2022-12-28 | 1 | -5/+15 |
| | |||||
* | gh-94172: Update docs for params removed in 3.12 (#100431) | Hugo van Kemenade | 2022-12-28 | 6 | -53/+53 |
| | | | | Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com> | ||||
* | gh-100540: Remove obsolete '--with-system-ffi' configure option (GH-100544) | Zachary Ware | 2022-12-28 | 1 | -5/+0 |
| | | | | | It has had no effect on non-macOS platforms for a long time, and has had the non-obvious effect of invoking `pkg_config` and not setting `-DUSING_APPLE_OS_LIBFFI` on macOS since GH-22855. | ||||
* | Improve factor() recipe and fix its tests (GH-100576) | Raymond Hettinger | 2022-12-28 | 1 | -20/+20 |
| | |||||
* | gh-55688: Add note about ending backslashes for raw strings (#94768) | Stanley | 2022-12-28 | 2 | -0/+45 |
| | | | Co-authored-by: hauntsaninja <hauntsaninja@gmail.com> | ||||
* | gh-92446: Improve argparse choices docs; revert bad change to lzma docs (#94627) | Guy Yagev | 2022-12-26 | 2 | -7/+7 |
| | | | | | | | Based on the definition of the collections.abc classes, it is more accurate to use "sequence" instead of "container" when describing argparse choices. A previous attempt at fixing this in #92450 was mistaken; this PR reverts that change. Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> | ||||
* | gh-99308: Clarify re docs for byte pattern group names (#99311) | Ilya Kulakov | 2022-12-25 | 1 | -7/+9 |
| | |||||
* | gh-100472: Fix docs claim that compileall parameters could be bytes (#100473) | Shantanu | 2022-12-24 | 1 | -2/+2 |
| | |||||
* | [Minor PR] Quotes in documentation changed into code blocks (#99536) | Bart Broere | 2022-12-24 | 1 | -0/+4 |
| | | | | | Minor formatting fix in documentation Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> | ||||
* | gh-100428: Make float documentation more accurate (#100437) | Shantanu | 2022-12-24 | 1 | -9/+12 |
| | | | | Previously, the grammar did not accept `float("10")`. Also implement mdickinson's suggestion of removing the indirection. | ||||
* | gh-99535: Add test for inheritance of annotations and update documentation ↵ | MonadChains | 2022-12-24 | 2 | -0/+10 |
| | | | | (#99990) | ||||
* | gh-99908: Tutorial: Modernize the 'data-record class' example (#100499) | JosephSBoyle | 2022-12-24 | 1 | -9/+15 |
| | | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> |