]> granicus.if.org Git - python/commitdiff
Issue #26511: Reference the id() function in the 'is' and 'is not' docs
authorRaymond Hettinger <python@rcn.com>
Mon, 12 Sep 2016 00:23:49 +0000 (17:23 -0700)
committerRaymond Hettinger <python@rcn.com>
Mon, 12 Sep 2016 00:23:49 +0000 (17:23 -0700)
Doc/reference/expressions.rst

index eafd70a8352b9b89126a27a1c236ec5058eac66c..08938b23c23b7683ec16e60da2398a7c64b9091d 100644 (file)
@@ -1315,8 +1315,9 @@ Identity comparisons
 --------------------
 
 The operators :keyword:`is` and :keyword:`is not` test for object identity: ``x
-is y`` is true if and only if *x* and *y* are the same object.  ``x is not y``
-yields the inverse truth value. [#]_
+is y`` is true if and only if *x* and *y* are the same object.  Object identity
+is determined using the :meth:`id` function.  ``x is not y`` yields the inverse
+truth value. [#]_
 
 
 .. _booleans: