Updated vendored dependencies.

This commit is contained in:
morpheus65535 2022-11-07 13:06:49 -05:00
parent 708fbfcd8e
commit bbe2483e21
1750 changed files with 53887 additions and 34406 deletions

View file

@ -1,7 +1,7 @@
# testing.py
from contextlib import contextmanager
from typing import Optional
import typing
from .core import (
ParserElement,
@ -237,12 +237,12 @@ class pyparsing_test:
@staticmethod
def with_line_numbers(
s: str,
start_line: Optional[int] = None,
end_line: Optional[int] = None,
start_line: typing.Optional[int] = None,
end_line: typing.Optional[int] = None,
expand_tabs: bool = True,
eol_mark: str = "|",
mark_spaces: Optional[str] = None,
mark_control: Optional[str] = None,
mark_spaces: typing.Optional[str] = None,
mark_control: typing.Optional[str] = None,
) -> str:
"""
Helpful method for debugging a parser - prints a string with line and column numbers.