Author: Armin Rigo <[email protected]> Branch: Changeset: r71726:6d4973cec392 Date: 2014-05-25 17:22 +0200 http://bitbucket.org/pypy/pypy/changeset/6d4973cec392/
Log: Add comment inline diff --git a/rpython/rlib/rsocket.py b/rpython/rlib/rsocket.py --- a/rpython/rlib/rsocket.py +++ b/rpython/rlib/rsocket.py @@ -23,6 +23,9 @@ from rpython.rtyper.lltypesystem.rffi import sizeof, offsetof INVALID_SOCKET = _c.INVALID_SOCKET from rpython.rlib import jit +# Usage of @jit.dont_look_inside in this file is possibly temporary +# and only because some lltypes declared in _rsocket_rffi choke the +# JIT's codewriter right now (notably, FixedSizeArray). def mallocbuf(buffersize): _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
