From: Gregory P. Smith Date: Sat, 5 Mar 2016 00:32:36 +0000 (-0800) Subject: issue26484 - fix the broken table in the doc about len(). X-Git-Tag: v2.7.12rc1~202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=deffc0be4b9ecd006e2be35edf4031f145c8c83f;p=thirdparty%2FPython%2Fcpython.git issue26484 - fix the broken table in the doc about len(). --- diff --git a/Doc/library/sets.rst b/Doc/library/sets.rst index a7ae3abdbe37..6c5e183f410a 100644 --- a/Doc/library/sets.rst +++ b/Doc/library/sets.rst @@ -76,7 +76,7 @@ operations: +-------------------------------+------------+---------------------------------+ | Operation | Equivalent | Result | +===============================+============+=================================+ -| ``len(s)`` | | number of elements in set *s* +| ``len(s)`` | | number of elements in set *s* | | | | (cardinality) | +-------------------------------+------------+---------------------------------+ | ``x in s`` | | test *x* for membership in *s* |