summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-09-15 00:26:04 +0000
committerptmcg <ptmcg@9bf210a0-9d2d-494c-87cf-cfb32e7dff7b>2016-09-15 00:26:04 +0000
commit92a3d045f31cd690c1fd959fd2e81a4bb18f05a5 (patch)
tree8a46348a451cd77bb41459da5ad0540cfb9f06a5
parentd5592b5a7b48ca3eb00889995ba8a82080f917bf (diff)
downloadpyparsing-92a3d045f31cd690c1fd959fd2e81a4bb18f05a5.tar.gz
Minor changes to unitTests.py
git-svn-id: svn://svn.code.sf.net/p/pyparsing/code/trunk@439 9bf210a0-9d2d-494c-87cf-cfb32e7dff7b
-rw-r--r--src/unitTests.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/unitTests.py b/src/unitTests.py
index cf2900d..17316f9 100644
--- a/src/unitTests.py
+++ b/src/unitTests.py
@@ -1,3 +1,4 @@
+# -*- coding: UTF-8 -*-
#
# unitTests.py
#
@@ -6,7 +7,6 @@
# Copyright 2002-2016, Paul McGuire
#
#
-# -*- coding: UTF-8 -*-
from unittest import TestCase, TestSuite, TextTestRunner
import unittest
import datetime
@@ -92,9 +92,6 @@ class ParseTestCase(TestCase):
print_(">>>> Starting test",str(self))
self.runTest()
- except SyntaxWarning as sw:
- print_(sw)
-
finally:
print_("<<<< End of test",str(self))
print_()