-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
C: parserHow we parse code. Or fail to parse it.How we parse code. Or fail to parse it.T: bugSomething isn't workingSomething isn't working
Description
% cat parse.py
class Plotter:
\
pass
% black parse.py
error: cannot format parse.py: Cannot parse: 3:4: pass
Oh no! 💥 💔 💥
1 file failed to reformat.
% black --version
black, 24.2.0 (compiled: yes)
Python (CPython) 3.12.0
% python parse.py
%
Saw this in astral-sh/ruff#10099; the example is minified from the repro case in that issue.
Metadata
Metadata
Assignees
Labels
C: parserHow we parse code. Or fail to parse it.How we parse code. Or fail to parse it.T: bugSomething isn't workingSomething isn't working