diff options
Diffstat (limited to 'examples/greetingInGreek.py')
-rw-r--r-- | examples/greetingInGreek.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/greetingInGreek.py b/examples/greetingInGreek.py index 8dccd81..8d20c36 100644 --- a/examples/greetingInGreek.py +++ b/examples/greetingInGreek.py @@ -6,10 +6,10 @@ #
# Copyright 2004-2016, by Paul McGuire
#
-from pyparsing import Word, pyparsing_unicode
+from pyparsing import Word, pyparsing_unicode as ppu
# define grammar
-alphas = pyparsing_unicode.Greek.alphas
+alphas = ppu.Greek.alphas
greet = Word(alphas) + ',' + Word(alphas) + '!'
# input string
|