Created
August 24, 2011 06:54
-
-
Save jcollado/1167446 to your computer and use it in GitHub Desktop.
Revisions
-
jcollado created this gist
Aug 24, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ class Mock(object): def __init__(self, *args): pass def __getattr__(self, name): return Mock for mod_name in ('pygtk', 'gtk', 'gobject', 'argparse'): sys.modules[mod_name] = Mock()