From de8326d00dffdb500c02839a98330b869c2457f3 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sat, 22 Dec 2018 09:28:48 -0800 Subject: 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. --- examples/datetimeParseActions.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'examples/datetimeParseActions.py') diff --git a/examples/datetimeParseActions.py b/examples/datetimeParseActions.py index e42d2c6..aa9e016 100644 --- a/examples/datetimeParseActions.py +++ b/examples/datetimeParseActions.py @@ -37,16 +37,16 @@ date_expr.setParseAction(convertToDatetime) date_expr.runTests("""\ - 2000/1/1 + 2000/1/1 # invalid month - 2000/13/1 + 2000/13/1 # 1900 was not a leap year - 1900/2/29 + 1900/2/29 # but 2000 was - 2000/2/29 + 2000/2/29 """) @@ -55,14 +55,14 @@ date_expr = pyparsing_common.iso8601_date.setParseAction(pyparsing_common.conver date_expr.ignore(pythonStyleComment) date_expr.runTests("""\ - 2000-01-01 + 2000-01-01 # invalid month - 2000-13-01 + 2000-13-01 # 1900 was not a leap year - 1900-02-29 + 1900-02-29 # but 2000 was - 2000-02-29 - """) \ No newline at end of file + 2000-02-29 + """) -- cgit v1.2.1