Skip to content

Commit 101c71d

Browse files
remove old comment
1 parent 8ccf6ca commit 101c71d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/core/computation/parsing.py

-2
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,5 @@ def tokenize_string(source: str) -> Iterator[tuple[int, str]]:
279279
line_reader = StringIO(source).readline
280280
token_generator = tokenize.generate_tokens(line_reader)
281281

282-
# Loop over all tokens till a backtick (`) is found.
283-
# Then, take all tokens till the next backtick to form a backtick quoted string
284282
for toknum, tokval, _, _, _ in token_generator:
285283
yield toknum, tokval

0 commit comments

Comments
 (0)