gpgme/lang/python/gpg
Tobias Mueller db2f6c1ca3 python: Make Results have a nicer __repr__.
* lang/python/gpg/results.py (Result.__str__): Renamed to '__repr__'
...
* lang/python/gpg/results.py (Result.__repr__): ... and added fields.
--

So that it looks a bit nicer in the Python REPL.

It looked like this before:

In [2]: gpg.core.get_engine_info()[0]
Out[2]:
<gpg.results.EngineInfo at 0x7fb23509a240>

Now the output is

In [2]: gpg.core.get_engine_info()[0]
Out[2]:
EngineInfo(file_name='/usr/bin/gpg2', home_dir=None,
protocol=0, req_version='1.4.0', version='2.1.11')

This also applies to other results, e.g. the ImportResult.

Note that the format now changed from "<Class >" to "Class()". The
Python documentation on repr states: "For many object types, including
most builtins, eval(repr(obj)) == obj."

Signed-off-by: Tobias Mueller <muelli@cryptobitch.de>
2016-12-01 17:28:39 +01:00
..
constants python: Use vanity modules for constants in tests and examples. 2016-10-31 15:42:35 +01:00
__init__.py python: Rename Python module from PyME to gpg. 2016-10-31 15:42:27 +01:00
callbacks.py python: Rename Python module from PyME to gpg. 2016-10-31 15:42:27 +01:00
core.py python: Rename Python module from PyME to gpg. 2016-10-31 15:42:27 +01:00
errors.py python: Improve constants module. 2016-10-31 15:42:35 +01:00
results.py python: Make Results have a nicer __repr__. 2016-12-01 17:28:39 +01:00
util.py python: Rename Python module from PyME to gpg. 2016-10-31 15:42:27 +01:00
version.py.in python: Rename Python module from PyME to gpg. 2016-10-31 15:42:27 +01:00