diff options
author | ptmcg <ptmcg@austin.rr.com> | 2019-01-09 17:18:22 -0600 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2019-01-09 17:18:22 -0600 |
commit | d626c99b6288afc4708d72f668b45a29d3263d22 (patch) | |
tree | 4cbeca134437387022e59b71631246e178393aca /examples/shapes.py | |
parent | e9ef507bf1fd41d4bd3ffb0c193e5889254ba340 (diff) | |
download | pyparsing-git-d626c99b6288afc4708d72f668b45a29d3263d22.tar.gz |
Add enumerated place holders for strings that invoke str.format(), for Py2 compatibility
Diffstat (limited to 'examples/shapes.py')
-rw-r--r-- | examples/shapes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/shapes.py b/examples/shapes.py index 73ed334..2df8572 100644 --- a/examples/shapes.py +++ b/examples/shapes.py @@ -15,7 +15,7 @@ class Shape(object): raise NotImplementedException()
def __str__(self):
- return "<{}>: {}".format(self.__class__.__name__, self.__dict__)
+ return "<{0}>: {1}".format(self.__class__.__name__, self.__dict__)
class Square(Shape):
def area(self):
|