Skip to content

Commit 9ce55ae

Browse files
authored
Incorrect f-string parsing (#112)
* Fix parse_fstring * Add test * Push char * Remove unused import
1 parent 8731e9f commit 9ce55ae

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

ast/src/ranged.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
use crate::text_size::{TextRange, TextSize};
22

3-
pub use crate::builtin::*;
4-
53
pub trait Ranged {
64
fn range(&self) -> TextRange;
75

parser/src/snapshots/rustpython_parser__string__tests__parse_fstring_escaped_brackets.snap

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

parser/src/string.rs

+12-1
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,11 @@ impl<'a> StringParser<'a> {
503503
}
504504
'\\' if !self.kind.is_raw() => {
505505
self.next_char();
506-
content.push_str(&self.parse_escaped_char()?);
506+
if let Some('{' | '}') = self.peek() {
507+
content.push('\\');
508+
} else {
509+
content.push_str(&self.parse_escaped_char()?);
510+
}
507511
}
508512
_ => {
509513
content.push(ch);
@@ -956,6 +960,13 @@ mod tests {
956960
insta::assert_debug_snapshot!(parse_ast);
957961
}
958962

963+
#[test]
964+
fn test_parse_fstring_escaped_brackets() {
965+
let source = "\\{{x\\}}";
966+
let parse_ast = parse_fstring(source).unwrap();
967+
insta::assert_debug_snapshot!(parse_ast);
968+
}
969+
959970
#[test]
960971
fn test_parse_string_concat() {
961972
let source = "'Hello ' 'world'";

0 commit comments

Comments
 (0)