From 420d2b590dfb9bc70755fb158eb3982a3133eaa3 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Sat, 27 Jul 2013 19:42:37 +0000 Subject: [PATCH] Remove TODO item for keyring separation in GPG.gen_key_input() and GPG.gen_key(). --- TODO | 8 -------- gnupg/gnupg.py | 1 - 2 files changed, 9 deletions(-) diff --git a/TODO b/TODO index aafbe72..49c59e4 100644 --- a/TODO +++ b/TODO @@ -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 diff --git a/gnupg/gnupg.py b/gnupg/gnupg.py index 53967da..efa9b1f 100644 --- a/gnupg/gnupg.py +++ b/gnupg/gnupg.py @@ -484,7 +484,6 @@ class GPG(GPGBase): :returns: The result mapping with details of the new key, which is a :class:`parsers.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)