Backport platform specific code to python2 (#6772)

This commit is contained in:
Nikita Sobolev
2022-01-01 15:26:20 +03:00
committed by GitHub
parent 6bdc158e61
commit 6da5eb2d04
12 changed files with 583 additions and 576 deletions

View File

@@ -1 +1,4 @@
def crypt(word: str, salt: str) -> str: ...
import sys
if sys.platform != "win32":
def crypt(word: str, salt: str) -> str: ...