[pypy-svn] r47324 - pypy/dist/demo/distribution
fijal at codespeak.net
fijal at codespeak.net
Tue Oct 9 09:28:07 CEST 2007
Author: fijal
Date: Tue Oct 9 09:28:06 2007
New Revision: 47324
Modified:
pypy/dist/demo/distribution/client.py
Log:
Fix exampl. Now this is really remote traceback.
Modified: pypy/dist/demo/distribution/client.py
==============================================================================
--- pypy/dist/demo/distribution/client.py (original)
+++ pypy/dist/demo/distribution/client.py Tue Oct 9 09:28:06 2007
@@ -26,7 +26,7 @@
# XXX next one does not work, while it should. Too much mangling with remote
# traceback frames probably
try:
- x.meth() # wrong argument numbers
+ x.meth(1, 2) # non-callable argument, AssertionError
except:
import sys
e, c, tb = sys.exc_info()
More information about the Pypy-commit
mailing list