2013-12-20 165 views
2

当我启动我的Python程序,终端洪水与:的Python + GTK - 如何禁止警告

rcGUI.py:331: Warning: Attempt to add property GtkSettings::gtk-label-select-on-focus after class was initialised 
label1 = gtk.Label("Current tools configured:") 
rcGUI.py:286: Warning: Attempt to add property GtkSettings::gtk-scrolled-window-placement after class was initialised 
scroll_window = gtk.ScrolledWindow() 
rcGUI.py:291: DeprecationWarning: use gtk.TreeView 
infoList = gtk.CList(2, ["Tool" , "Version"]) 
rcGUI.py:291: Warning: Attempt to add property GtkSettings::gtk-button-images after class was initialised 
infoList = gtk.CList(2, ["Tool" , "Version"]) 
rcGUI.py:217: Warning: Attempt to add property GtkSettings::gtk-can-change-accels after class was initialised 
toolCombo = gtk.combo_box_entry_new_text() 
rcGUI.py:217: Warning: Attempt to add property GtkSettings::gtk-menu-popup-delay after class was initialised 
toolCombo = gtk.combo_box_entry_new_text() 
rcGUI.py:217: Warning: Attempt to add property GtkSettings::gtk-menu-popdown-delay after class was initialised 
toolCombo = gtk.combo_box_entry_new_text() 
rcGUI.py:217: Warning: Attempt to add property GtkSettings::gtk-entry-select-on-focus after class was initialised 
toolCombo = gtk.combo_box_entry_new_text() 
rcGUI.py:217: Warning: Attempt to add property GtkSettings::gtk-entry-password-hint-timeout after class was initialised 
toolCombo = gtk.combo_box_entry_new_text() 

有趣的是,我的用户在KDE运行它没有得到所有这些警告(除弃用一个),但那些在GNOME中。所以我认为最简单的方法是压制所有这些警告。我只是还没有能够找出如何。

+2

相关讨论:https://mail.gnome.org/archives/commits-list/2013-April/msg07206.html – Anonimista

回答

1
import warnings 
warnings.filterwarnings("ignore") 

到不过滤:

warnings.filterwarnings("default")