Remove TODO item for keyring separation in GPG.gen_key_input() and GPG.gen_key().

fix/5-genkeyinput-default-type
Isis Lovecruft 2013-07-27 19:42:37 +00:00
parent b54cb8ee42
commit 420d2b590d
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
2 changed files with 0 additions and 9 deletions

8
TODO
View File

@ -1,13 +1,5 @@
-*- mode: org -*-
* Keyring separation :keyseparation:
** TODO in GPG.gen_key() :keyseparation:gen_key:
It would be nice to have an option for gen_key() [[gnupg.py:927]] to
automatically switch before key generation to a new tempfile.mkdtemp()
directory, with a new keyring and secring, and then to rename either the
directory or the keyrings with the long keyid of the key which was freshly
generated.
* I/O :io:
** TODO in GPG.__make_args() :io:makeargs:
It would be nice to make the file descriptors for communication with the GnuPG

View File

@ -484,7 +484,6 @@ class GPG(GPGBase):
:returns: The result mapping with details of the new key, which is a
:class:`parsers.GenKey <GenKey>` object.
"""
## see TODO file, tag :gen_key: for todo items
args = ["--gen-key --batch"]
key = self._result_map['generate'](self)
f = _make_binary_stream(input, self._encoding)