diff options
author | Paul McGuire <ptmcg@users.noreply.github.com> | 2018-12-23 21:30:40 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-23 21:30:40 -0600 |
commit | 4fba64a079016e6ea62d041f19b7eadd081341e8 (patch) | |
tree | 6c5fdae41cf8b335ff1c64f37856786523e4fd0d /examples/numerics.py | |
parent | 59dfd314c23fd653271bdad37631f0497e8ad748 (diff) | |
parent | de8326d00dffdb500c02839a98330b869c2457f3 (diff) | |
download | pyparsing-git-4fba64a079016e6ea62d041f19b7eadd081341e8.tar.gz |
Merge pull request #55 from jdufresne/ws
Trim trailing white space throughout the project
Diffstat (limited to 'examples/numerics.py')
-rw-r--r-- | examples/numerics.py | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/examples/numerics.py b/examples/numerics.py index 5ab99dd..0af3cae 100644 --- a/examples/numerics.py +++ b/examples/numerics.py @@ -9,41 +9,41 @@ # Format samples from https://docs.oracle.com/cd/E19455-01/806-0169/overview-9/index.html
#
tests = """\
-# Canadian (English and French)
-4 294 967 295,000
+# Canadian (English and French)
+4 294 967 295,000
-# Danish
-4 294 967 295,000
+# Danish
+4 294 967 295,000
-# Finnish
-4 294 967 295,000
+# Finnish
+4 294 967 295,000
-# French
-4 294 967 295,000
+# French
+4 294 967 295,000
-# German
-4 294 967 295,000
+# German
+4 294 967 295,000
-# Italian
-4.294.967.295,000
+# Italian
+4.294.967.295,000
-# Norwegian
-4.294.967.295,000
+# Norwegian
+4.294.967.295,000
-# Spanish
-4.294.967.295,000
+# Spanish
+4.294.967.295,000
-# Swedish
-4 294 967 295,000
+# Swedish
+4 294 967 295,000
-# GB-English
-4,294,967,295.000
+# GB-English
+4,294,967,295.000
-# US-English
-4,294,967,295.000
+# US-English
+4,294,967,295.000
-# Thai
-4,294,967,295.000
+# Thai
+4,294,967,295.000
"""
from pyparsing import Regex
|