We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1dcd670 + 3800b4b commit 55cfa44Copy full SHA for 55cfa44
2 files changed
MANIFEST.in
@@ -1,2 +1,3 @@
1
include README.md
2
include LICENSE
3
+graft examples
src/pam/pam.py examples/pam.pysrc/pam/pam.py renamed to examples/pam.py
@@ -22,15 +22,16 @@
22
'''
23
PAM module for python
24
25
-This is a legacy file, it is not used. Here for example.
+This is a legacy implementation of the real module, kept around as a usage
26
+example.
27
28
Provides an authenticate function that will allow the caller to authenticate
29
a user against the Pluggable Authentication Modules (PAM) on the system.
30
31
Implemented using ctypes, so no compilation is necessary.
32
33
-import __internals
34
+import pam.__internals
35
36
if __name__ == "__main__": # pragma: no cover
37
import readline
0 commit comments