]> granicus.if.org Git - python/commitdiff
Issue #23986: Note that the in-operator for lists and tuples check identity before...
authorRaymond Hettinger <python@rcn.com>
Tue, 26 Apr 2016 07:59:16 +0000 (00:59 -0700)
committerRaymond Hettinger <python@rcn.com>
Tue, 26 Apr 2016 07:59:16 +0000 (00:59 -0700)
Doc/reference/expressions.rst

index 1fd37f3bb340f19effefc6adbdf2750460712798..c46ab64585ff4001fed456961427451be921064c 100644 (file)
@@ -1153,7 +1153,7 @@ types to support membership tests without being a sequence.  In particular,
 dictionaries (for keys) and sets support membership testing.
 
 For the list and tuple types, ``x in y`` is true if and only if there exists an
-index *i* such that ``x == y[i]`` is true.
+index *i* such that either ``x is y[i]`` or ``x == y[i]`` is true.
 
 For the Unicode and string types, ``x in y`` is true if and only if *x* is a
 substring of *y*.  An equivalent test is ``y.find(x) != -1``.  Note, *x* and *y*