Graybyt3 Was Here
Linux cloud.locucionar.com 3.10.0-1160.81.1.el7.x86_64 #1 SMP Fri Dec 16 17:29:43 UTC 2022 x86_64
Apache
91.191.211.241
/
opt
/
imunify360
/
venv
/
lib64
/
python3.11
/
site-packages
/
pip
/
_vendor
/
pygments
/
__pycache__
[ HOME ]
Exec
Submit
scanner.cpython-311.pyc
� #�Fh � �H � d Z ddlZ G d� de� � Z G d� d� � ZdS )a pygments.scanner ~~~~~~~~~~~~~~~~ This library implements a regex based scanner. Some languages like Pascal are easy to parse but have some keywords that depend on the context. Because of this it's impossible to lex that just by using a regular expression lexer like the `RegexLexer`. Have a look at the `DelphiLexer` to get an idea of how to use this scanner. :copyright: Copyright 2006-2025 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. � Nc � � e Zd ZdZdS )� EndOfTextzZ Raise if end of text is reached and the user tried to call a match function. N)�__name__� __module__�__qualname__�__doc__� � �|/builddir/build/BUILD/imunify360-venv-2.5.3/opt/imunify360/venv/lib/python3.11/site-packages/pip/_vendor/pygments/scanner.pyr r s � � � � � �� � � r r c �` � e Zd ZdZdd�Zd� Z eeej � � Zd� Zd� Zd� Z d� Z d � Zd S )�Scannerzp Simple scanner All method patterns are regular expression strings (not compiled expressions!) r c � � || _ t |� � | _ d| _ d| _ || _ d| _ d| _ i | _ dS )z{ :param text: The text which should be scanned :param flags: default regular expression flags r N) �data�len�data_length� start_pos�pos�flags�last�match� _re_cache)�self�textr s r �__init__zScanner.__init__# sG � � �� ��t�9�9����������� ��� ��� �����r c �"