Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: python/cpython
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ece20dba120a1a4745721c49f8d7389d4b1ee2a7
Choose a base ref
...
head repository: python/cpython
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6be7aee18c5b8e639103df951d0d277f4b46f902
Choose a head ref
  • 17 commits
  • 53 files changed
  • 17 contributors

Commits on Apr 18, 2023

  1. Configuration menu
    Copy the full SHA
    c3d015c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4e04393 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    78cac52 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    07804ce View commit details
    Browse the repository at this point in the history
  5. gh-103596: [Enum] do not shadow mixed-in methods/attributes (GH-103600)

    For example:
    
        class Book(StrEnum):
            title = auto()
            author = auto()
            desc = auto()
    
        Book.author.desc is Book.desc
    
    but
    
        Book.author.title() == 'Author'
    
    is commonly expected.  Using upper-case member names avoids this confusion and possible performance impacts.
    
    Co-authored-by: samypr100 <3933065+samypr100@users.noreply.github.com>
    ethanfurman and samypr100 authored Apr 18, 2023
    Configuration menu
    Copy the full SHA
    700ec65 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2023

  1. Configuration menu
    Copy the full SHA
    ffdbfe1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e989e0b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f4d0879 View commit details
    Browse the repository at this point in the history
  4. gh-102778: IDLE - make sys.last_exc available in Shell after traceback (

    #103314)
    
    ---------
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    iritkatriel and terryjreedy authored Apr 19, 2023
    Configuration menu
    Copy the full SHA
    d1e4917 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    da2273f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bd2ed06 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a6b07b5 View commit details
    Browse the repository at this point in the history
  8. gh-102856: Initial implementation of PEP 701 (#102855)

    Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
    Co-authored-by: Batuhan Taskaya <isidentical@gmail.com>
    Co-authored-by: Marta Gómez Macías <mgmacias@google.com>
    Co-authored-by: sunmy2019 <59365878+sunmy2019@users.noreply.github.com>
    5 people authored Apr 19, 2023
    Configuration menu
    Copy the full SHA
    1ef61cf View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    5f7d68e View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d4aa857 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    2b1260c View commit details
    Browse the repository at this point in the history
  12. gh-98040: Move the Single-Phase Init Tests Out of test_imp (gh-102561)

    I recently added some tests to test_imp, but @warsaw is removing that file in gh-98573. The tests are worth keeping so here I'm moving them to test_import.
    ericsnowcurrently authored Apr 19, 2023
    Configuration menu
    Copy the full SHA
    6be7aee View commit details
    Browse the repository at this point in the history
Loading