We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6373d9 commit f0d9b4eCopy full SHA for f0d9b4e
1 file changed
stubs/passlib/passlib/hosts.pyi
@@ -1,3 +1,4 @@
1
+import sys
2
from typing import Any
3
4
from passlib.context import CryptContext
@@ -8,4 +9,5 @@ freebsd_context: Any
8
9
openbsd_context: Any
10
netbsd_context: Any
11
# Only exists if crypt is present
-host_context: CryptContext
12
+if sys.version_info < (3, 13):
13
+ host_context: CryptContext
0 commit comments