diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2016-08-09 21:24:40 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2016-08-09 21:24:40 +0000 |
commit | 9c57a4241aa9d531de00f25ec3fe1723fe7268cc (patch) | |
tree | 4f435c112b7cf434e7ec114aa196a5b45907e014 /src/examples/ebnf.py | |
parent | 5b3a2bff031f821ab2b69d157f1b24408b201a1b (diff) | |
download | pyparsing-git-9c57a4241aa9d531de00f25ec3fe1723fe7268cc.tar.gz |
Add missing authorship attributions and copyrights to examples
Diffstat (limited to 'src/examples/ebnf.py')
-rw-r--r-- | src/examples/ebnf.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/examples/ebnf.py b/src/examples/ebnf.py index 8dfcaea..242aed4 100644 --- a/src/examples/ebnf.py +++ b/src/examples/ebnf.py @@ -4,7 +4,9 @@ # ISO 14977 standardize The Extended Backus-Naur Form(EBNF) syntax.
# You can read a final draft version here:
# http://www.cl.cam.ac.uk/~mgk25/iso-ebnf.html
-
+#
+# Submitted 2004 by Seo Sanghyeon
+#
from pyparsing import *
|