summaryrefslogtreecommitdiff
path: root/examples/commasep.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/commasep.py')
-rw-r--r--examples/commasep.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/commasep.py b/examples/commasep.py
index 067647d..c3557b6 100644
--- a/examples/commasep.py
+++ b/examples/commasep.py
@@ -10,6 +10,7 @@
#
import pyparsing as pp
+
ppc = pp.pyparsing_common
testData = [
@@ -19,6 +20,6 @@ testData = [
"John Doe, 123 Main St., Cleveland, Ohio",
"Jane Doe, 456 St. James St., Los Angeles , California ",
"",
- ]
+]
ppc.comma_separated_list.runTests(testData)