Author: Armin Rigo <[email protected]> Branch: Changeset: r91981:df23f3d1554c Date: 2017-07-27 17:25 +0200 http://bitbucket.org/pypy/pypy/changeset/df23f3d1554c/
Log: Mention that unbound method objects only exist in Python 2 diff --git a/pypy/doc/cpython_differences.rst b/pypy/doc/cpython_differences.rst --- a/pypy/doc/cpython_differences.rst +++ b/pypy/doc/cpython_differences.rst @@ -330,7 +330,7 @@ - ``frozenset`` (empty frozenset only) - - unbound method objects + - unbound method objects (for Python 2 only) This change requires some changes to ``id`` as well. ``id`` fulfills the following condition: ``x is y <=> id(x) == id(y)``. Therefore ``id`` of the _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
