Fix directly accessible package modules.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-06-03 08:55:45 +00:00
parent db7c2760ae
commit 3c07dfc4fd
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 5 additions and 1 deletions

View File

@ -34,9 +34,13 @@ __authors__ = copyleft.authors
__license__ = copyleft.full_text
__copyleft__ = copyleft.copyright
__all__ = ["GPG"]
## do not set __package__ = "gnupg", else we will end up with
## gnupg.<*allofthethings*>
__all__ = ["GPG", "_util", "_parsers", "_meta", "_logger"]
## avoid the "from gnupg import gnupg" idiom
del gnupg
del absolute_import
del copyleft
del get_versions
del _version