mirror of
https://github.com/davidhalter/parso.git
synced 2026-05-25 09:48:53 +08:00
Rename normalizer -> errors.
This commit is contained in:
+1
-1
@@ -9,7 +9,7 @@ from parso.python.tokenize import tokenize_lines, tokenize
|
|||||||
from parso.cache import parser_cache, load_module, save_module
|
from parso.cache import parser_cache, load_module, save_module
|
||||||
from parso.parser import BaseParser
|
from parso.parser import BaseParser
|
||||||
from parso.python.parser import Parser as PythonParser
|
from parso.python.parser import Parser as PythonParser
|
||||||
from parso.python.normalizer import ErrorFinderConfig
|
from parso.python.errors import ErrorFinderConfig
|
||||||
from parso.python import pep8
|
from parso.python import pep8
|
||||||
|
|
||||||
_loaded_grammars = {}
|
_loaded_grammars = {}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import re
|
import re
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
|
|
||||||
from parso.python.normalizer import ErrorFinder, ErrorFinderConfig
|
from parso.python.errors import ErrorFinder, ErrorFinderConfig
|
||||||
from parso.normalizer import Rule
|
from parso.normalizer import Rule
|
||||||
from parso.python.tree import search_ancestor, Flow, Scope
|
from parso.python.tree import search_ancestor, Flow, Scope
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user