4 comments (4 comments)0 reactions (0 reactions)0 assignees (0 assignees)Python1,465 forks (1,465 forks)batch import
bughelp wantedmachine filesparser/interpreter
Repository metrics
- Stars
- 4,978 stars (4,978 stars)
- PR merge metrics
- Avg merge 139d 13h (Avg merge 139d 13h)51 merged PRs in 30d (51 merged PRs in 30d)
Description
A parsing error is thrown if a closing bracket in a cross file appears at the beginning of the line.
For example, this works:
c_args = [
'-DFOO'
]
...but this doesn't:
c_args = [
'-DFOO'
]
Contributor guide
- Research direction
- Locate the parser code handling cross file bracket parsing. Investigate why a closing bracket at the start of a line causes an error, while indented ones do not. Check for whitespace handling logic.
- Tech stack
- python
- Domain
- build system
- Issue type
- Bug
- Prerequisites
- Python