-
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore Keyring on OS_X module along with a DeprecationWarning. Fixes #…
…487.
- Loading branch information
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
""" | ||
For improved compatibility when older keyring metadata points | ||
to this module, supply it. See jaraco/keyring#486. | ||
Backward-compatibility shim for users referencing the module | ||
by name. Ref #487. | ||
""" | ||
|
||
import warnings | ||
|
||
from .macOS import Keyring | ||
|
||
__all__ = ['Keyring'] | ||
|
||
|
||
warnings.warn("OS_X module is deprecated.", DeprecationWarning) |