Remove RustPython fork (#523)

This commit is contained in:
Charlie Marsh 2022-10-30 18:04:05 -04:00 committed by GitHub
parent b060ae2f22
commit 2415d73260
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
173 changed files with 2071 additions and 2056 deletions

View file

@ -137,7 +137,7 @@ pub fn to_absolute(relative: &Location, base: &Location) -> Location {
if relative.row() == 1 {
Location::new(
relative.row() + base.row() - 1,
relative.column() + base.column() - 1,
relative.column() + base.column(),
)
} else {
Location::new(relative.row() + base.row() - 1, relative.column())