Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharsadhwani committed Aug 15, 2023
1 parent dbdb02c commit 5acb397
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blib2to3/pgen2/tokenize.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ def _combinations(*l: str) -> Set[str]:
ContStr = group(
_litprefix + r"'[^\n'\\]*(?:\\.[^\n'\\]*)*" + group("'", r"\\\r?\n"),
_litprefix + r'"[^\n"\\]*(?:\\.[^\n"\\]*)*' + group('"', r"\\\r?\n"),
group(_fstringlitprefix + "'") + r"[^\n'\\]*(?:\\.[^\n'\\]*)*({{)(?<!{{{{)",
group(_fstringlitprefix + '"') + r'[^\n"\\]*(?:\\.[^\n"\\]*)*({{)(?<!{{{{)',
group(_fstringlitprefix + "'") + r"[^\n'\\]*(?:\\.[^\n'\\]*)*({)(?<!{{)",
group(_fstringlitprefix + '"') + r'[^\n"\\]*(?:\\.[^\n"\\]*)*({)(?<!{{)',
)
PseudoExtras = group(r"\\\r?\n", Comment, Triple)
PseudoToken = Whitespace + group(PseudoExtras, Number, Funny, ContStr, Name)
Expand Down

0 comments on commit 5acb397

Please sign in to comment.