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

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
12e0a9d
WIP [mypyc] optimize f-string building
BobTheBuidler Aug 7, 2025
5b44af1
Update specialize.py
BobTheBuidler Aug 7, 2025
fc40c81
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 7, 2025
61970f5
Update specialize.py
BobTheBuidler Aug 7, 2025
c5ebd11
Update specialize.py
BobTheBuidler Aug 11, 2025
8a68800
Update specialize.py
BobTheBuidler Aug 11, 2025
996d852
Update specialize.py
BobTheBuidler Aug 11, 2025
3fe0a63
Update specialize.py
BobTheBuidler Aug 11, 2025
c817b67
Update specialize.py
BobTheBuidler Aug 11, 2025
8636006
Update specialize.py
BobTheBuidler Aug 11, 2025
5cee243
Update specialize.py
BobTheBuidler Aug 11, 2025
8b50424
Update specialize.py
BobTheBuidler Aug 11, 2025
712b10a
Update irbuild-str.test
BobTheBuidler Aug 11, 2025
ad58850
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 11, 2025
a69ea3f
Update format_str_tokenizer.py
BobTheBuidler Aug 11, 2025
5351050
Update format_str_tokenizer.py
BobTheBuidler Aug 11, 2025
5b32541
Update irbuild-str.test
BobTheBuidler Aug 11, 2025
0a03849
Update irbuild-str.test
BobTheBuidler Aug 11, 2025
a68c9f8
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 11, 2025
0216858
Update specialize.py
BobTheBuidler Aug 11, 2025
6047b0f
Update irbuild-str.test
BobTheBuidler Aug 11, 2025
7b3ca5b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 11, 2025
ceb0e03
Update irbuild-str.test
BobTheBuidler Aug 11, 2025
ba03d50
Update irbuild-str.test
BobTheBuidler Aug 11, 2025
fc973df
Update irbuild-str.test
BobTheBuidler Aug 11, 2025
029b657
Update irbuild-str.test
BobTheBuidler Aug 11, 2025
8064845
fix ir whitespace
BobTheBuidler Aug 11, 2025
55c4a8d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 11, 2025
e71e215
Merge branch 'master' into patch-3
BobTheBuidler Aug 13, 2025
417fa73
Update specialize.py
BobTheBuidler Aug 13, 2025
aed4c1d
add more tests
BobTheBuidler Aug 13, 2025
1de5018
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 13, 2025
212bee8
Update specialize.py
BobTheBuidler Aug 14, 2025
80a97a9
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 14, 2025
60c8af0
Merge branch 'master' into patch-3
BobTheBuidler Aug 14, 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
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 13, 2025
commit 1de501877aa7ddade7f222fc076baf9242ac45dd
2 changes: 1 addition & 1 deletion mypyc/irbuild/specialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ def get_literal_str(expr: Expression) -> str | None:
):
return str(expr.node.final_value)
return None

for i in range(len(exprs) - 1):
while (
len(exprs) >= i + 2
Expand Down
Loading