I keep getting this :
DeprecationWarning: integer argument expected, got float
How do I make this message go away? Is there a way to avoid warnings in Python?
|
I keep getting this :
How do I make this message go away? Is there a way to avoid warnings in Python? |
||||
If you're on Windows: pass (But resolving the issue may be a better course of action... casting to int is not hard.) |
|||||||||
|
|
I had these:
Fixed it with:
Now you still get all the other DeprecationWarnings, but not the ones caused by import md5, sha |
|||||
|
|
You should just fix your code but just in case,
|
|||||
|
|
|
I found the cleanest way to do this (especially on windows) is by adding the following to C:\Python26\Lib\site-packages\sitecustomize.py:
Note that I had to create this file. Of course, change the path to python if yours is different. |
|||
|
|
|
Pass the correct arguments? :P On the more serious note, you can pass the argument -Wi::DeprecationWarning on the command line to the interpreter to ignore the deprecation warnings. |
|||
|
|
|
Not to beat you up about it but you are being warned that what you are doing will likely stop working when you next upgrade python. Convert to int and be done with it. BTW. You can also write your own warnings handler. Just assign a function that does nothing. http://stackoverflow.com/questions/858916/how-to-redirect-python-warnings-to-a-custom-stream |
|||
|
|
DeprecationWarningit's not a complete solution. – poolie Nov 7 '11 at 5:13