How to get rid of FutureWarning: hex/oct constants...

J Correia correiajREMOVECAPS at hotmail.com
Tue Apr 5 20:11:47 EDT 2005


Assuming you're just trying to get rid of the message each time the program
runs, the following suppresses it:

import warnings
warnings.filterwarnings('ignore', category=FutureWarning)


HTH,





More information about the Python-list mailing list