In stdlib, use hashlib instead of deprecated md5 and sha modules.

This commit is contained in:
Georg Brandl 2006-04-30 08:57:35 +00:00
parent fa42bd7af4
commit bffb0bc064
6 changed files with 16 additions and 17 deletions

View file

@ -6,7 +6,7 @@ from distutils.errors import *
from distutils.core import Command
from distutils.spawn import spawn
from distutils import log
from md5 import md5
from hashlib import md5
import os
import socket
import platform