-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python grammar fixes: typing in parser class and f-string fix (#97)
* python.gram: fix several typing issues in the base parser class typing * python: fix small issue in f-string parsing
- Loading branch information
1 parent
6d4b7f2
commit b11e9f2
Showing
2 changed files
with
18 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,6 @@ | |
|
||
|
||
f'{expr:}' | ||
|
||
f'{expr:d}' | ||
foo = 3.14159 | ||
verbosePrint(f'Foo {foo:.3} bar.') |