From e515b4787ee5be6d3afbcbce356974d3622caa4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 21 Jan 2020 21:50:55 +0100 Subject: [PATCH] Tables, 'Yes' to 'yes' --- README.md | 20 ++++++++++---------- index.html | 20 ++++++++++---------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 23dc4d8..4432103 100644 --- a/README.md +++ b/README.md @@ -289,11 +289,11 @@ True +--------------------+----------+----------+----------+----------+----------+ | | Integral | Rational | Real | Complex | Number | +--------------------+----------+----------+----------+----------+----------+ -| int | Yes | Yes | Yes | Yes | Yes | -| fractions.Fraction | | Yes | Yes | Yes | Yes | -| float | | | Yes | Yes | Yes | -| complex | | | | Yes | Yes | -| decimal.Decimal | | | | | Yes | +| int | yes | yes | yes | yes | yes | +| fractions.Fraction | | yes | yes | yes | yes | +| float | | | yes | yes | yes | +| complex | | | | yes | yes | +| decimal.Decimal | | | | | yes | +--------------------+----------+----------+----------+----------+----------+ ``` @@ -337,11 +337,11 @@ String +---------------+----------+----------+----------+----------+----------+ | | [ !#$%…] | [a-zA-Z] | [¼½¾] | [²³¹] | [0-9] | +---------------+----------+----------+----------+----------+----------+ -| isprintable() | Yes | Yes | Yes | Yes | Yes | -| isalnum() | | Yes | Yes | Yes | Yes | -| isnumeric() | | | Yes | Yes | Yes | -| isdigit() | | | | Yes | Yes | -| isdecimal() | | | | | Yes | +| isprintable() | yes | yes | yes | yes | yes | +| isalnum() | | yes | yes | yes | yes | +| isnumeric() | | | yes | yes | yes | +| isdigit() | | | | yes | yes | +| isdecimal() | | | | | yes | +---------------+----------+----------+----------+----------+----------+ ``` * **Also: `'isspace()'` checks for `'[ \t\n\r\f\v…]'`.** diff --git a/index.html b/index.html index c7377c2..6adfb6d 100644 --- a/index.html +++ b/index.html @@ -410,11 +410,11 @@ to_exclusive = <range>.stop
+--------------------+----------+----------+----------+----------+----------+
 |                    | Integral | Rational |   Real   | Complex  |  Number  |
 +--------------------+----------+----------+----------+----------+----------+
-| int                |   Yes    |   Yes    |   Yes    |   Yes    |   Yes    |
-| fractions.Fraction |          |   Yes    |   Yes    |   Yes    |   Yes    |
-| float              |          |          |   Yes    |   Yes    |   Yes    |
-| complex            |          |          |          |   Yes    |   Yes    |
-| decimal.Decimal    |          |          |          |          |   Yes    |
+| int                |   yes    |   yes    |   yes    |   yes    |   yes    |
+| fractions.Fraction |          |   yes    |   yes    |   yes    |   yes    |
+| float              |          |          |   yes    |   yes    |   yes    |
+| complex            |          |          |          |   yes    |   yes    |
+| decimal.Decimal    |          |          |          |          |   yes    |
 +--------------------+----------+----------+----------+----------+----------+
 

#String

<str>  = <str>.strip()                       # Strips all whitespace characters from both ends.
@@ -445,11 +445,11 @@ to_exclusive   = <range>.stop
 

Property Methods

+---------------+----------+----------+----------+----------+----------+
 |               | [ !#$%…] | [a-zA-Z] |  [¼½¾]   |  [²³¹]   |  [0-9]   |
 +---------------+----------+----------+----------+----------+----------+
-| isprintable() |   Yes    |   Yes    |   Yes    |   Yes    |   Yes    |
-| isalnum()     |          |   Yes    |   Yes    |   Yes    |   Yes    |
-| isnumeric()   |          |          |   Yes    |   Yes    |   Yes    |
-| isdigit()     |          |          |          |   Yes    |   Yes    |
-| isdecimal()   |          |          |          |          |   Yes    |
+| isprintable() |   yes    |   yes    |   yes    |   yes    |   yes    |
+| isalnum()     |          |   yes    |   yes    |   yes    |   yes    |
+| isnumeric()   |          |          |   yes    |   yes    |   yes    |
+| isdigit()     |          |          |          |   yes    |   yes    |
+| isdecimal()   |          |          |          |          |   yes    |
 +---------------+----------+----------+----------+----------+----------+