/opt/cloudlinux/venv/lib/python3.11/site-packages/Cython/Plex
NameSizeModeActions
__pycache__/-0755rm
Actions.pxd5850644editdlrm
Actions.py25450644editdlrm
DFA.py60120644editdlrm
Errors.py11690644editdlrm
Lexicons.py69070644editdlrm
Machines.py77600644editdlrm
Regexps.py162080644editdlrm
Scanners.pxd14810644editdlrm
Scanners.py122590644editdlrm
Timing.py4720644editdlrm
Traditional.py41200644editdlrm
Transitions.py71870644editdlrm
__init__.py12820644editdlrm
Edit: /opt/cloudlinux/venv/lib/python3.11/site-packages/Cython/Plex/Errors.py (1169B)
#======================================================================= # # Python Lexical Analyser # # Exception classes # #======================================================================= class PlexError(Exception): message = "" class PlexTypeError(PlexError, TypeError): pass class PlexValueError(PlexError, ValueError): pass class InvalidRegex(PlexError): pass class InvalidToken(PlexError): def __init__(self, token_number, message): PlexError.__init__(self, "Token number %d: %s" % (token_number, message)) class InvalidScanner(PlexError): pass class AmbiguousAction(PlexError): message = "Two tokens with different actions can match the same string" def __init__(self): pass class UnrecognizedInput(PlexError): scanner = None position = None state_name = None def __init__(self, scanner, state_name): self.scanner = scanner self.position = scanner.get_position() self.state_name = state_name def __str__(self): return ("'%s', line %d, char %d: Token not recognised in state %r" % ( self.position + (self.state_name,)))