Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
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 orlearn 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/mypy
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:f10b462
Choose a base ref
Loading
...
head repository:python/mypy
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:df05f05
Choose a head ref
Loading
  • 17commits
  • 16files changed
  • 7contributors

Commits on Sep 4, 2025

  1. [stubtest] temporary--ignore-disjoint-basesflag (#19740)

    closes#19737ref:#19737 (comment)---It's not the prettiest code, but since it will be removed once PEP 800gets accepted (or rejected), I figured it would be best to keep itsimple, so that we can easily revert it.
    @jorenham
    jorenham authored andKevin Kannammalil committedSep 4, 2025
    Configuration menu
    Copy the full SHA
    8638eb4View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2025

  1. Make --allow-redefinition-new argument public (#19796)

    It is time to announce this (as still experimental obviously).(cherry picked from commitd33c147)
    @ilevkivskyi
    ilevkivskyi authored andKevin Kannammalil committedSep 5, 2025
    Configuration menu
    Copy the full SHA
    5a323ddView commit details
    Browse the repository at this point in the history
  2. feat: new mypyc primitives for weakref.proxy (#19217)

    This PR adds 2 new weakref primitives for weakref.proxy (1 and 2 arg)(cherry picked from commit8f2371a)
    @BobTheBuidler
    BobTheBuidler authored andKevin Kannammalil committedSep 5, 2025
    Configuration menu
    Copy the full SHA
    a6b55f0View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2025

  1. [mypyc] Fix subclass processing in detect_undefined_bitmap (#19787)

    Incorrect processing in detect_undefined_bitmap could cause a ValueErrorexception in emit_undefined_attr_check.
    @Chainfire@KevinRK29
    Chainfire authored andKevinRK29 committedSep 9, 2025
    Configuration menu
    Copy the full SHA
    2ce1bb2View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2025

  1. Expose --fixed-format-cache if compiled (#19815)

    (cherry picked from commitfd05265)
    @ilevkivskyi@KevinRK29
    ilevkivskyi authored andKevinRK29 committedSep 10, 2025
    Configuration menu
    Copy the full SHA
    0ca1f2aView commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2025

  1. Initial changelog for release 1.18 (#19818)

    (cherry picked from commit9ae3e9a)
    @KevinRK29
    KevinRK29 committedSep 11, 2025
    Configuration menu
    Copy the full SHA
    24eed0bView commit details
    Browse the repository at this point in the history
  2. Updates to 1.18 changelog (#19826)

    Did various edits, added a few additional sections, and reordered somesections.(cherry picked from commit73fa69e)
    @JukkaL@KevinRK29
    JukkaL authored andKevinRK29 committedSep 11, 2025
    Configuration menu
    Copy the full SHA
    ee61cecView commit details
    Browse the repository at this point in the history
  3. Removed Unreleased in the Changelog for Release 1.18 (#19827)

    Remove Unreleased from section title(cherry picked from commitf0863a5)
    @KevinRK29
    KevinRK29 committedSep 11, 2025
    Configuration menu
    Copy the full SHA
    7197a99View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b44a1fbView commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    03fbaa9View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2025

  1. Fix crash on recursive alias in indirection.py (#19845)

    Fixes#19836Fix is trivial, I am surprised none of the existing tests caught this inthe original PR. After this is merged, I am going to add the test to`master`.
    @ilevkivskyi
    ilevkivskyi authoredSep 15, 2025
    Configuration menu
    Copy the full SHA
    7669841View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2025

  1. Configuration menu
    Copy the full SHA
    2f3f03cView commit details
    Browse the repository at this point in the history
  2. stubtest: additional guidance on errors when runtime is object.__init…

    …__ (#19733)Fixes#19732This is a simple check to point users in the right direction when theyget errors because their class uses `__new__` but they wrote stubs for`__init__`. I don't feel strongly about the exact wording used here. Ialso considered "Maybe you meant to define `__new__` instead of`__init__`?".(cherry picked from commit530bdc5)
    @tungol@KevinRK29
    tungol authored andKevinRK29 committedSep 16, 2025
    Configuration menu
    Copy the full SHA
    2c0510cView commit details
    Browse the repository at this point in the history
  3. [mypyc] fix: inappropriateNones in f-strings (#19846)

    if a variable is Final but the value is not yet known at compile-time,and that variable is used as an input to an f-string, the f-string willincorrectly contain "None"Fixes [mypyc#1140](mypyc/mypyc#1140)(cherry picked from commitdce8e1c)
    @BobTheBuidler@KevinRK29
    BobTheBuidler authored andKevinRK29 committedSep 16, 2025
    Configuration menu
    Copy the full SHA
    9d794b5View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ca5abf0View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2025

  1. Update changelog for 1.18.2 (#19873)

    Changelog update for 1.18.2Also updated the changelog to reflect the initial release being 1.18.1,since we had to bump the version due to wheels failing.This adds the cherry picked PRs mentioned in#19764 (comment)(cherry picked from commit4301be1)
    @KevinRK29
    KevinRK29 committedSep 18, 2025
    Configuration menu
    Copy the full SHA
    01a7a12View commit details
    Browse the repository at this point in the history
  2. remove +dev from version

    @KevinRK29
    KevinRK29 committedSep 18, 2025
    Configuration menu
    Copy the full SHA
    df05f05View commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp