diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2019-10-24 20:11:14 -0700 |
---|---|---|
committer | Paul McGuire <ptmcg@users.noreply.github.com> | 2019-10-24 22:11:14 -0500 |
commit | f73e2571fb643a2afdde365eeee0fe0f3f4f5300 (patch) | |
tree | f9015586cee7efc5e60eee78a8ebcbaa4e9e953d /examples/TAP.py | |
parent | 696808023f10207461d7b22dc1d02cbed44e2bfa (diff) | |
download | pyparsing-git-f73e2571fb643a2afdde365eeee0fe0f3f4f5300.tar.gz |
Use pyupgrade to upgrade the code to use Python3 conventions (#138)
The pyupgrade project is available at
https://github.com/asottile/pyupgrade and can be installed through pip.
The pyupgrade tool automatically upgrades syntax for newer versions of
the language. As pyparsing is now Python 3 only, can apply some cleanups
and simplifications. Ran the tool using the following command:
$ find . -name \*.py -exec pyupgrade --py3-plus {} \;
For now, pyparsing.py was skipped while it is refactored to a package.
Diffstat (limited to 'examples/TAP.py')
-rw-r--r-- | examples/TAP.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/TAP.py b/examples/TAP.py index 18f57fd..cb3afff 100644 --- a/examples/TAP.py +++ b/examples/TAP.py @@ -62,7 +62,7 @@ bailLine = Group(Literal("Bail out!")("BAIL") + tapOutputParser = Optional(Group(plan)("plan") + NL) & \
Group(OneOrMore((testLine|bailLine) + NL))("tests")
-class TAPTest(object):
+class TAPTest:
def __init__(self,results):
self.num = results.testNumber
self.passed = (results.passed=="ok")
@@ -77,7 +77,7 @@ class TAPTest(object): ret.skipped = True
return ret
-class TAPSummary(object):
+class TAPSummary:
def __init__(self,results):
self.passedTests = []
self.failedTests = []
|