[PyCrust-cvs] wx prefix.py,1.1,1.2
Brought to you by:
pobrien
From: <po...@us...> - 2003-03-21 15:22:30
|
Update of /cvsroot/pycrust/wx In directory sc8-pr-cvs1:/tmp/cvs-serv8640 Modified Files: prefix.py Log Message: Possible addition, which leaves out imported modules. Index: prefix.py =================================================================== RCS file: /cvsroot/pycrust/wx/prefix.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** prefix.py 7 Mar 2003 15:37:16 -0000 1.1 --- prefix.py 21 Mar 2003 15:22:24 -0000 1.2 *************** *** 14,17 **** --- 14,22 ---- # Skip modules and private names. continue + ## mod = d_old['__name__'] + ## if hasattr(obj, '__module__') and not obj.__module__.startswith(mod): + ## # Skip objects imported from other modules, except those + ## # related to the current module, such as stc_. + ## continue new = old if old.startswith('EVT_') or old.startswith('wxEVT_'): |