On Wed, Apr 22, 2009 at 6:16 PM, Jim Carlock
<jcarl...@nospam.microcosmotalk.com> wrote:
> I downloaded Python 2.6.2 today. Anyone here know what that error in
> the subject really means and possibly what I should look at? I took
> a look at line 13 in the specified file and it states the line that
> it has a problem with.
>
> import sha

That's not an error/exception, it's a warning. Like it says, the 'sha'
module has been deprecated, which means that it is slated to be
removed in a future version of Python, hence you should phase out its
use. Like the message also says, the new 'hashlib' module is the 'sha'
module's replacement.

See also http://docs.python.org/library/hashlib.html

Cheers,
Chris
-- 
I have a blog:
http://blog.rebertia.com
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to