vote up 2 vote down star
1

Possible Duplicate:
How to ignore deprecation warnings in Python

I'm using backup software written in Python - rdiff-backup. Unfortunately it does:

import sha

and my python2.6 has:

warnings.warn("the sha module is deprecated; use the hashlib module instead",
                DeprecationWarning, 2)

In sha.py.

Is there any way to disable this warning - short of modifying sources? Some kind of switch to python that makes it ignore DeprecationWarnings ?

flag

57% accept rate
6  
Duplicate. Anyway, short story: pass -W ignore::DeprecationWarning as an argument to Python. But it's better to fix the code. – Stephan202 Oct 7 at 17:40
Sorry for duplicate - didn't see it. Can you give url to original question - so I can mark it for closing as well? – depesz Oct 7 at 18:42
@depesz: no problem. URL: stackoverflow.com/questions/879173/… – Stephan202 Oct 7 at 18:50
By the way, when you vote to close you will be presented a list of links that other people supplied as possible duplicates. – Stephan202 Oct 7 at 18:58
@Stephan202 - at. true. thanks. voted to close. – depesz Oct 7 at 19:04

closed as exact duplicate by Stephan202, Eli Courtwright, SilentGhost, depesz, sth Oct 8 at 0:00

1 Answer

vote up 5 vote down check

Take a look at the command line switch

-W arg : warning control (arg is action:message:category:module:lineno)
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.