OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python38
/
lib64
/
python3.8
/
lib2to3
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/26/2024 03:10:24 AM
rwxr-xr-x
📄
Grammar.txt
8.47 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
Grammar3.8.18.final.0.pickle
14.95 KB
10/30/2023 06:26:07 PM
rw-r--r--
📄
PatternGrammar.txt
793 bytes
08/24/2023 07:36:32 PM
rw-r--r--
📄
PatternGrammar3.8.18.final.0.pickle
1.2 KB
10/30/2023 06:26:08 PM
rw-r--r--
📄
__init__.py
7 bytes
08/24/2023 07:36:32 PM
rw-r--r--
📄
__main__.py
67 bytes
08/24/2023 07:36:32 PM
rw-r--r--
📁
__pycache__
-
02/26/2024 03:10:24 AM
rwxr-xr-x
📄
btm_matcher.py
6.47 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
btm_utils.py
9.73 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
fixer_base.py
6.53 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
fixer_util.py
14.85 KB
08/24/2023 07:36:32 PM
rw-r--r--
📁
fixes
-
02/26/2024 03:10:24 AM
rwxr-xr-x
📄
main.py
11.38 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
patcomp.py
6.89 KB
08/24/2023 07:36:32 PM
rw-r--r--
📁
pgen2
-
02/26/2024 03:10:24 AM
rwxr-xr-x
📄
pygram.py
1.27 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
pytree.py
27.3 KB
08/24/2023 07:36:32 PM
rw-r--r--
📄
refactor.py
26.76 KB
08/24/2023 07:36:32 PM
rw-r--r--
Editing: PatternGrammar.txt
Close
# Copyright 2006 Google, Inc. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. # A grammar to describe tree matching patterns. # Not shown here: # - 'TOKEN' stands for any token (leaf node) # - 'any' stands for any node (leaf or interior) # With 'any' we can still specify the sub-structure. # The start symbol is 'Matcher'. Matcher: Alternatives ENDMARKER Alternatives: Alternative ('|' Alternative)* Alternative: (Unit | NegatedUnit)+ Unit: [NAME '='] ( STRING [Repeater] | NAME [Details] [Repeater] | '(' Alternatives ')' [Repeater] | '[' Alternatives ']' ) NegatedUnit: 'not' (STRING | NAME [Details] | '(' Alternatives ')') Repeater: '*' | '+' | '{' NUMBER [',' NUMBER] '}' Details: '<' Alternatives '>'