]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/PatternGrammar.txt
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / lib2to3 / PatternGrammar.txt
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/PatternGrammar.txt b/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/PatternGrammar.txt
deleted file mode 100644 (file)
index 7fea3fa..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 2006 Google, Inc. All Rights Reserved.\r
-# Licensed to PSF under a Contributor Agreement.\r
-\r
-# A grammar to describe tree matching patterns.\r
-# Not shown here:\r
-# - 'TOKEN' stands for any token (leaf node)\r
-# - 'any' stands for any node (leaf or interior)\r
-# With 'any' we can still specify the sub-structure.\r
-\r
-# The start symbol is 'Matcher'.\r
-\r
-Matcher: Alternatives ENDMARKER\r
-\r
-Alternatives: Alternative ('|' Alternative)*\r
-\r
-Alternative: (Unit | NegatedUnit)+\r
-\r
-Unit: [NAME '='] ( STRING [Repeater]\r
-                 | NAME [Details] [Repeater]\r
-                 | '(' Alternatives ')' [Repeater]\r
-                 | '[' Alternatives ']'\r
-                )\r
-\r
-NegatedUnit: 'not' (STRING | NAME [Details] | '(' Alternatives ')')\r
-\r
-Repeater: '*' | '+' | '{' NUMBER [',' NUMBER] '}'\r
-\r
-Details: '<' Alternatives '>'\r