diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-12-22 09:28:48 -0800 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2018-12-22 13:46:56 -0800 |
commit | de8326d00dffdb500c02839a98330b869c2457f3 (patch) | |
tree | 6c5fdae41cf8b335ff1c64f37856786523e4fd0d /examples/numerics.py | |
parent | 59dfd314c23fd653271bdad37631f0497e8ad748 (diff) | |
download | pyparsing-git-de8326d00dffdb500c02839a98330b869c2457f3.tar.gz |
Trim trailing white space throughout the project
Many editors clean up trailing white space on save. By removing it all
in one go, it helps keep future diffs cleaner by avoiding spurious white
space changes on unrelated lines.
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
|