[pypy-svn] r11752 - pypy/dist/pypy/documentation/revreport
hpk at codespeak.net
hpk at codespeak.net
Mon May 2 02:04:12 CEST 2005
Author: hpk
Date: Mon May 2 02:04:12 2005
New Revision: 11752
Modified:
pypy/dist/pypy/documentation/revreport/delta.py
Log:
use new location of callcapture() helper
Modified: pypy/dist/pypy/documentation/revreport/delta.py
==============================================================================
--- pypy/dist/pypy/documentation/revreport/delta.py (original)
+++ pypy/dist/pypy/documentation/revreport/delta.py Mon May 2 02:04:12 2005
@@ -576,9 +576,17 @@
rep.navig = navig
for modname in modnames:
-
- mod1 = expl1.get_module(modname)
- mod2 = expl2.get_module(modname)
+ try:
+ mod1 = expl1.get_module(modname)
+ mod2 = expl2.get_module(modname)
+ except:
+ print "traceback while getting modules"
+ print "modname", modname
+ print "expl1", expl1
+ print "expl2", expl2
+ import traceback
+ traceback.print_exc()
+ continue
mod_rep = mod_delta(modname, expl1, mod1, expl2, mod2)
More information about the Pypy-commit
mailing list