summaryrefslogtreecommitdiff
path: root/qutebrowser/utils/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/utils/utils.py')
-rw-r--r--qutebrowser/utils/utils.py20
1 files changed, 1 insertions, 19 deletions
diff --git a/qutebrowser/utils/utils.py b/qutebrowser/utils/utils.py
index fb0165de2..a56769255 100644
--- a/qutebrowser/utils/utils.py
+++ b/qutebrowser/utils/utils.py
@@ -375,18 +375,6 @@ def is_enum(obj: Any) -> bool:
return False
-def pyenum_str(value: enum.Enum) -> str:
- """Get a string representation of a Python enum value.
-
- This will have the form of "EnumType.membername", which is the default string
- representation for Python up to 3.10. Unfortunately, that changes with Python 3.10:
- https://bugs.python.org/issue40066
- """
- if sys.version_info[:2] >= (3, 10):
- return repr(value)
- return str(value)
-
-
def get_repr(obj: Any, constructor: bool = False, **attrs: Any) -> str:
"""Get a suitable __repr__ string for an object.
@@ -399,14 +387,8 @@ def get_repr(obj: Any, constructor: bool = False, **attrs: Any) -> str:
cls = qualname(obj.__class__)
parts = []
items = sorted(attrs.items())
-
for name, val in items:
- if isinstance(val, enum.Enum):
- s = pyenum_str(val)
- else:
- s = repr(val)
- parts.append(f'{name}={s}')
-
+ parts.append('{}={!r}'.format(name, val))
if constructor:
return '{}({})'.format(cls, ', '.join(parts))
else: