[pypy-commit] pypy default: Clarify.

arigo noreply at buildbot.pypy.org
Thu Jul 28 18:17:26 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r46054:86f2dedf6790
Date: 2011-07-28 18:17 +0200
http://bitbucket.org/pypy/pypy/changeset/86f2dedf6790/

Log:	Clarify.

diff --git a/pypy/rlib/jit.py b/pypy/rlib/jit.py
--- a/pypy/rlib/jit.py
+++ b/pypy/rlib/jit.py
@@ -20,8 +20,8 @@
 
     Most importantly it doesn't mean that an elidable function has no observable
     side effect, but those side effects are idempotent (ie caching).
-    The function can raise an exception, in which case this decorator is
-    ignored.
+    If a particular call to this function ends up raising an exception, then it
+    is handled like a normal function call (this decorator is ignored).
     """
     func._elidable_function_ = True
     return func


More information about the pypy-commit mailing list