Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
cce8669
[mypyc] fix: reject invalid `mypyc_attr` args
BobTheBuidler Oct 1, 2025
d4631ac
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 1, 2025
0cc6c5d
fix: add key 'free_list_len'
BobTheBuidler Oct 1, 2025
4aefb1b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 1, 2025
3c27112
fix mypy errs
BobTheBuidler Oct 1, 2025
c2f3d36
Update util.py
BobTheBuidler Oct 1, 2025
0e1c740
Update util.py
BobTheBuidler Oct 1, 2025
0de2627
Update util.py
BobTheBuidler Oct 1, 2025
4a88449
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 1, 2025
7932b81
Update util.py
BobTheBuidler Oct 1, 2025
593c5ee
Update util.py
BobTheBuidler Oct 1, 2025
9d12459
fix mypy err
BobTheBuidler Oct 1, 2025
f7468d9
fix mypy err
BobTheBuidler Oct 1, 2025
71473d3
Update util.py
BobTheBuidler Oct 3, 2025
123b740
test error message
BobTheBuidler Oct 3, 2025
3e98dce
Update irbuild-classes.test
BobTheBuidler Oct 3, 2025
dfe19bb
add note to tests
BobTheBuidler Oct 3, 2025
16fb0f3
Update irbuild-classes.test
BobTheBuidler Oct 3, 2025
b220df5
Update irbuild-classes.test
BobTheBuidler Oct 3, 2025
cae1c85
Merge branch 'master' into reject-invalid-mypyc-attr
BobTheBuidler Oct 4, 2025
8caceb9
use double quotes
BobTheBuidler Oct 6, 2025
e6670cf
another double quote
BobTheBuidler Oct 6, 2025
c663542
Update util.py
BobTheBuidler Oct 6, 2025
2a0bfbd
Update irbuild-classes.test
BobTheBuidler Oct 6, 2025
ac891b9
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 6, 2025
0c23635
Update util.py
BobTheBuidler Oct 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update util.py
  • Loading branch information
BobTheBuidler authored Oct 1, 2025
commit 593c5eee115b91c0944aae710c504bb67b87a0f4
2 changes: 1 addition & 1 deletion mypyc/irbuild/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from mypy.types import FINAL_DECORATOR_NAMES
from mypyc.errors import Errors

MYPYC_ATTRS: Final[MypycAttr] = frozenset(
MYPYC_ATTRS: Final[frozenset[MypycAttr]] = frozenset(
["native_class", "allow_interpreted_subclasses", "serializable", "free_list_len"]
)

Expand Down