commit | 96aeaec64738b730c719562125070a52ed570210 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Mon May 06 22:29:40 2019 +0300 |
committer | GitHub <noreply@github.com> | Mon May 06 22:29:40 2019 +0300 |
tree | d68994f93014d081e9a441e7bf7dfda3aaadd402 | |
parent | 964663089547ca110199e23867b46b07ff4be88c [diff] [blame] |
bpo-36793: Remove unneeded __str__ definitions. (GH-13081) Classes that define __str__ the same as __repr__ can just inherit it from object.
diff --git a/Lib/sre_constants.py b/Lib/sre_constants.py index 13deb00..8e613cb 100644 --- a/Lib/sre_constants.py +++ b/Lib/sre_constants.py
@@ -59,11 +59,9 @@ self.name = name return self - def __str__(self): + def __repr__(self): return self.name - __repr__ = __str__ - MAXREPEAT = _NamedIntConstant(MAXREPEAT, 'MAXREPEAT') def _makecodes(names):