diff options
author | zhshishkin <zhshishkin@yandex-team.ru> | 2022-02-10 16:47:46 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:46 +0300 |
commit | 4c8065245df3ea26b7757bcb1f8218df287f9148 (patch) | |
tree | c0748b5dcbade83af788c0abfa89c0383d6b779c /contrib/python/future | |
parent | 79c237341aa1ecfb6731e89bfe4bf65c3bb5179e (diff) | |
download | ydb-4c8065245df3ea26b7757bcb1f8218df287f9148.tar.gz |
Restoring authorship annotation for <zhshishkin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/python/future')
-rw-r--r-- | contrib/python/future/future/backports/xmlrpc/client.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/python/future/future/backports/xmlrpc/client.py b/contrib/python/future/future/backports/xmlrpc/client.py index 7eeed80750..3f0cae9b00 100644 --- a/contrib/python/future/future/backports/xmlrpc/client.py +++ b/contrib/python/future/future/backports/xmlrpc/client.py @@ -1102,9 +1102,9 @@ class _Method(object): def __init__(self, send, name): self.__send = send self.__name = name - def __repr__(self): - return "<_Method for %s>" % self.__name - __str__ = __repr__ + def __repr__(self): + return "<_Method for %s>" % self.__name + __str__ = __repr__ def __getattr__(self, name): return _Method(self.__send, "%s.%s" % (self.__name, name)) def __call__(self, *args): |