
- Move black.py to src/black/__init__.py - Have setuptools_scm make src/_black_version.py and exclude from git - Move blackd.py to src/blackd/__init__.py - Move blib2to3/ to src/ - Update `setup.py` - Update unittests to pass - Mostly path fixing + resolving - Update CI - pre-commit config - appveyor + travis Tested on my mac with python 3.7.5 via: ``` python3 -m venv /tmp/tb3 /tmp/tb3/bin/pip install --upgrade setuptools pip coverage pre-commit /tmp/tb2/bin/pip install ~/repos/black/ cd ~/repos/black/ /tmp/tb2/bin/coverage run tests/test_black.py /tmp/tb3/bin/pre-commit run -a /tmp/tb3/bin/black --help /tmp/tb3/bin/black ~/repos/ptr/ptr.py ```
29 lines
793 B
Plaintext
29 lines
793 B
Plaintext
# Copyright 2006 Google, Inc. All Rights Reserved.
|
|
# Licensed to PSF under a Contributor Agreement.
|
|
|
|
# A grammar to describe tree matching patterns.
|
|
# Not shown here:
|
|
# - 'TOKEN' stands for any token (leaf node)
|
|
# - 'any' stands for any node (leaf or interior)
|
|
# With 'any' we can still specify the sub-structure.
|
|
|
|
# The start symbol is 'Matcher'.
|
|
|
|
Matcher: Alternatives ENDMARKER
|
|
|
|
Alternatives: Alternative ('|' Alternative)*
|
|
|
|
Alternative: (Unit | NegatedUnit)+
|
|
|
|
Unit: [NAME '='] ( STRING [Repeater]
|
|
| NAME [Details] [Repeater]
|
|
| '(' Alternatives ')' [Repeater]
|
|
| '[' Alternatives ']'
|
|
)
|
|
|
|
NegatedUnit: 'not' (STRING | NAME [Details] | '(' Alternatives ')')
|
|
|
|
Repeater: '*' | '+' | '{' NUMBER [',' NUMBER] '}'
|
|
|
|
Details: '<' Alternatives '>'
|