Remove old keyring property code.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-05-21 13:50:31 +00:00
parent 6cbed40f84
commit 406f212a3f
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 0 additions and 30 deletions

View File

@ -295,36 +295,6 @@ class GPGBase(object):
os.unline(loc)
log.debug("Removed binary symlink '%s'" % loc)
# @property
# def keyring(self):
# """Get the public keyring."""
# return self._keyring
#
# @keyring.setter
# def keyring(self, pub):
# """Set the file to use as GnuPG's current (public) keyring.
#
# :param str pub: The filename, relative to :attr:``GPG.homedir``, to use
# for storing public key data.
# """
# ring = _fix_unsafe(pub) if pub else 'pubring.gpg'
# self._keyring = os.path.join(self._homedir, ring)
#
# @property
# def secring(self):
# """Get the secret keyring."""
# return self._secring
#
# @secring.setter
# def secring(self, sec):
# """Set the file to use as GnuPG's current secret keyring.
#
# :param str pub: The filename, relative to :attr:``GPG.homedir``, to use
# for storing secret key data.
# """
# ring = _fix_unsafe(sec) if sec else 'secring.gpg'
# self._secring = os.path.join(self._homedir, ring)
@property
def default_preference_list(self):
"""Get the default preference list."""