diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2015-09-13 20:00:54 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2015-09-13 20:00:54 +0000 |
commit | af48680354ab40f697f1dca69ade29e67cfb58bb (patch) | |
tree | 6bb8f45c791b8f50d0fa1e7669f284bc37d64944 /src/unitTests.py | |
parent | 41569649e498eb15128628e87fce5bb1cab3eac8 (diff) | |
download | pyparsing-git-af48680354ab40f697f1dca69ade29e67cfb58bb.tar.gz |
Adopt new-fangled Python features, like decorators and ternary expressions, per suggestions from Williamzjc - thanks William! (Oh yeah, I'm not supporting Python 2.3 with this code any more...)
Diffstat (limited to 'src/unitTests.py')
-rw-r--r-- | src/unitTests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unitTests.py b/src/unitTests.py index ceb4872..bef6a73 100644 --- a/src/unitTests.py +++ b/src/unitTests.py @@ -2484,8 +2484,8 @@ console = True if console:
#~ # console mode
testRunner = TextTestRunner()
- #~ testRunner.run( makeTestSuite() )
- testRunner.run( makeTestSuiteTemp() )
+ testRunner.run( makeTestSuite() )
+ #~ testRunner.run( makeTestSuiteTemp() )
#~ lp.run("testRunner.run( makeTestSuite() )")
else:
# HTML mode
|