Server IP : 192.158.238.246 / Your IP : 3.128.197.221 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/cloudlinux/venv/lib64/python3.11/site-packages/pyparsing/__pycache__/ |
Upload File : |
� ��bgZ4 � �P � d dl mZ d dlZddlmZmZmZmZmZ G d� d� � Z dS )� )�contextmanagerN� )� ParserElement�ParseException�Keyword�__diag__� __compat__c �� � e Zd ZdZ G d� d� � Z G d� d� � Ze dd ed ej e dej e ded edej e dej e defd�� � ZdS )�pyparsing_testzB namespace class for classes useful in writing unit tests c �6 � e Zd ZdZd� Zd� Zd� Zd� Zd� Zd� Z dS ) �&pyparsing_test.reset_pyparsing_contexta� Context manager to be used when writing unit tests that modify pyparsing config values: - packrat parsing - bounded recursion parsing - default whitespace characters. - default keyword characters - literal string auto-conversion class - __diag__ settings Example:: with reset_pyparsing_context(): # test that literals used to construct a grammar are automatically suppressed ParserElement.inlineLiteralsUsing(Suppress) term = Word(alphas) | Word(nums) group = Group('(' + term[...] + ')') # assert that the '()' characters are not included in the parsed tokens self.assertParseAndCheckList(group, "(abc 123 def)", ['abc', '123', 'def']) # after exiting context manager, literals are converted to Literal expressions again c � � i | _ d S �N)� _save_context��selfs �b/builddir/build/BUILD/cloudlinux-venv-1.0.7/venv/lib/python3.11/site-packages/pyparsing/testing.py�__init__z/pyparsing_test.reset_pyparsing_context.__init__- s � �!#�D���� c �� � t j | j d<