]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/Lib/sha.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Lib / sha.py
diff --git a/AppPkg/Applications/Python/Python-2.7.10/Lib/sha.py b/AppPkg/Applications/Python/Python-2.7.10/Lib/sha.py
deleted file mode 100644 (file)
index 93a17bc..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-# $Id$\r
-#\r
-#  Copyright (C) 2005   Gregory P. Smith (greg@krypto.org)\r
-#  Licensed to PSF under a Contributor Agreement.\r
-\r
-import warnings\r
-warnings.warn("the sha module is deprecated; use the hashlib module instead",\r
-                DeprecationWarning, 2)\r
-\r
-from hashlib import sha1 as sha\r
-new = sha\r
-\r
-blocksize = 1        # legacy value (wrong in any useful sense)\r
-digest_size = 20\r
-digestsize = 20\r