[pypy-commit] pypy default: Mention that unbound method objects only exist in Python 2

arigo pypy.commits at gmail.com
Thu Jul 27 11:31:43 EDT 2017


Author: Armin Rigo <arigo at tunes.org>
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


More information about the pypy-commit mailing list