diff options
author | Maciej Fijalkowski <fijall@gmail.com> | 2007-10-09 07:28:06 +0000 |
---|---|---|
committer | Maciej Fijalkowski <fijall@gmail.com> | 2007-10-09 07:28:06 +0000 |
commit | c6beee176c4460e3d9ae46dad9d1e884dfdb3529 (patch) | |
tree | e0840480f3faeabf1b41ea5a22589fabf7520af6 /demo | |
parent | more dead code (diff) | |
download | pypy-c6beee176c4460e3d9ae46dad9d1e884dfdb3529.tar.gz pypy-c6beee176c4460e3d9ae46dad9d1e884dfdb3529.tar.bz2 pypy-c6beee176c4460e3d9ae46dad9d1e884dfdb3529.zip |
Fix exampl. Now this is really remote traceback.
Diffstat (limited to 'demo')
-rw-r--r-- | demo/distribution/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/distribution/client.py b/demo/distribution/client.py index 7a07c0f1a1..17cd025f3e 100644 --- a/demo/distribution/client.py +++ b/demo/distribution/client.py @@ -26,7 +26,7 @@ remote_handle.sys._getframe(2).f_locals['x'] # remote frame access # 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() |