Skip to content

Commit 4b8e30f

Browse files
authored
Fix Name node range in NamedExpr node (#1526)
1 parent 8fd0d8e commit 4b8e30f

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ regex = { version = "1.6.0" }
5353
ropey = { version = "1.5.0", features = ["cr_lines", "simd"], default-features = false }
5454
ruff_macros = { version = "0.0.205", path = "ruff_macros" }
5555
rustc-hash = { version = "1.1.0" }
56-
rustpython-ast = { features = ["unparse"], git = "https://github.com/RustPython/RustPython.git", rev = "8cb2b8292062adf13bde1b863a9b02c9f0bda3dd" }
57-
rustpython-common = { git = "https://github.com/RustPython/RustPython.git", rev = "8cb2b8292062adf13bde1b863a9b02c9f0bda3dd" }
58-
rustpython-parser = { features = ["lalrpop"], git = "https://github.com/RustPython/RustPython.git", rev = "8cb2b8292062adf13bde1b863a9b02c9f0bda3dd" }
56+
rustpython-ast = { features = ["unparse"], git = "https://github.com/RustPython/RustPython.git", rev = "71becd4059fdce4bce7010f1208ed3b1c883abba" }
57+
rustpython-common = { git = "https://github.com/RustPython/RustPython.git", rev = "71becd4059fdce4bce7010f1208ed3b1c883abba" }
58+
rustpython-parser = { features = ["lalrpop"], git = "https://github.com/RustPython/RustPython.git", rev = "71becd4059fdce4bce7010f1208ed3b1c883abba" }
5959
schemars = { version = "0.8.11" }
6060
semver = { version = "1.0.16" }
6161
serde = { version = "1.0.147", features = ["derive"] }

ruff_dev/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ itertools = { version = "0.10.5" }
1111
libcst = { git = "https://github.com/charliermarsh/LibCST", rev = "f2f0b7a487a8725d161fe8b3ed73a6758b21e177" }
1212
once_cell = { version = "1.16.0" }
1313
ruff = { path = ".." }
14-
rustpython-ast = { features = ["unparse"], git = "https://github.com/RustPython/RustPython.git", rev = "8cb2b8292062adf13bde1b863a9b02c9f0bda3dd" }
15-
rustpython-common = { git = "https://github.com/RustPython/RustPython.git", rev = "8cb2b8292062adf13bde1b863a9b02c9f0bda3dd" }
16-
rustpython-parser = { features = ["lalrpop"], git = "https://github.com/RustPython/RustPython.git", rev = "8cb2b8292062adf13bde1b863a9b02c9f0bda3dd" }
14+
rustpython-ast = { features = ["unparse"], git = "https://github.com/RustPython/RustPython.git", rev = "71becd4059fdce4bce7010f1208ed3b1c883abba" }
15+
rustpython-common = { git = "https://github.com/RustPython/RustPython.git", rev = "71becd4059fdce4bce7010f1208ed3b1c883abba" }
16+
rustpython-parser = { features = ["lalrpop"], git = "https://github.com/RustPython/RustPython.git", rev = "71becd4059fdce4bce7010f1208ed3b1c883abba" }
1717
schemars = { version = "0.8.11" }
1818
serde_json = {version="1.0.91"}
1919
strum = { version = "0.24.1", features = ["strum_macros"] }

src/flake8_builtins/snapshots/ruff__flake8_builtins__tests__A001_A001.py.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ expression: checks
4949
column: 1
5050
end_location:
5151
row: 6
52-
column: 13
52+
column: 8
5353
fix: ~
5454
parent: ~
5555
- kind:

src/pycodestyle/snapshots/ruff__pycodestyle__tests__E741_E741.py.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ expression: checks
249249
column: 4
250250
end_location:
251251
row: 74
252-
column: 10
252+
column: 5
253253
fix: ~
254254
parent: ~
255255

0 commit comments

Comments
 (0)