From 47842626e8175e482f8dc6abd00e567a85e51772 Mon Sep 17 00:00:00 2001 From: ramvikrams Date: Wed, 28 Dec 2022 22:52:55 +0530 Subject: [PATCH 1/5] Update stdtypes.rst --- Doc/library/stdtypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 0ef03035a572e5..dd72107e08db98 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -84,8 +84,8 @@ These are the Boolean operations, ordered by ascending priority: +-------------+---------------------------------+-------+ | Operation | Result | Notes | +=============+=================================+=======+ -| ``x or y`` | if *x* is false, then *y*, else | \(1) | -| | *x* | | +| ``x or y`` | if *x* is true, then *x*, else | \(1) | +| | *y* | | +-------------+---------------------------------+-------+ | ``x and y`` | if *x* is false, then *x*, else | \(2) | | | *y* | | From 985f3fdaddd2d582c71196d5ae75282fc93dbb73 Mon Sep 17 00:00:00 2001 From: ramvikrams Date: Thu, 29 Dec 2022 22:24:28 +0530 Subject: [PATCH 2/5] Update stdtypes.rst --- Doc/library/stdtypes.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index dd72107e08db98..71957b28c319a4 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -84,11 +84,11 @@ These are the Boolean operations, ordered by ascending priority: +-------------+---------------------------------+-------+ | Operation | Result | Notes | +=============+=================================+=======+ -| ``x or y`` | if *x* is true, then *x*, else | \(1) | +| ``x or y`` | if *x* is True, then *x*, else | \(1) | | | *y* | | +-------------+---------------------------------+-------+ -| ``x and y`` | if *x* is false, then *x*, else | \(2) | -| | *y* | | +| ``x and y`` | if *x* is True and *y* is True, | \(2) | +| | then True, else False | | +-------------+---------------------------------+-------+ | ``not x`` | if *x* is false, then ``True``, | \(3) | | | else ``False`` | | From ea779502e0aa4dc365b022e7201e364a47e31ea7 Mon Sep 17 00:00:00 2001 From: ramvikrams Date: Fri, 30 Dec 2022 19:40:20 +0530 Subject: [PATCH 3/5] Update stdtypes.rst --- Doc/library/stdtypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 71957b28c319a4..c13cae644138bf 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -87,8 +87,8 @@ These are the Boolean operations, ordered by ascending priority: | ``x or y`` | if *x* is True, then *x*, else | \(1) | | | *y* | | +-------------+---------------------------------+-------+ -| ``x and y`` | if *x* is True and *y* is True, | \(2) | -| | then True, else False | | +| ``x and y`` | if *x* and *y* then True, | \(2) | +| | else False | | +-------------+---------------------------------+-------+ | ``not x`` | if *x* is false, then ``True``, | \(3) | | | else ``False`` | | From 254b6992bf90920a5926fdddd29e78d3d7b1f3b0 Mon Sep 17 00:00:00 2001 From: ramvikrams Date: Sat, 31 Dec 2022 12:02:11 +0530 Subject: [PATCH 4/5] Update stdtypes.rst --- Doc/library/stdtypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index c13cae644138bf..fac80c4a74789c 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -87,8 +87,8 @@ These are the Boolean operations, ordered by ascending priority: | ``x or y`` | if *x* is True, then *x*, else | \(1) | | | *y* | | +-------------+---------------------------------+-------+ -| ``x and y`` | if *x* and *y* then True, | \(2) | -| | else False | | +| ``x and y`` | if *x* is false, then *x*, else | \(2) | +| | *y* | | +-------------+---------------------------------+-------+ | ``not x`` | if *x* is false, then ``True``, | \(3) | | | else ``False`` | | From 83e83ed377b67acfb75143fab1e30c1456de1207 Mon Sep 17 00:00:00 2001 From: ram vikram singh Date: Sat, 31 Dec 2022 17:14:28 +0530 Subject: [PATCH 5/5] Update Doc/library/stdtypes.rst Co-authored-by: Hugo van Kemenade --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index fac80c4a74789c..dd72107e08db98 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -84,7 +84,7 @@ These are the Boolean operations, ordered by ascending priority: +-------------+---------------------------------+-------+ | Operation | Result | Notes | +=============+=================================+=======+ -| ``x or y`` | if *x* is True, then *x*, else | \(1) | +| ``x or y`` | if *x* is true, then *x*, else | \(1) | | | *y* | | +-------------+---------------------------------+-------+ | ``x and y`` | if *x* is false, then *x*, else | \(2) |