Skip to content

Commit e515b47

Browse files
committed
Tables, 'Yes' to 'yes'
1 parent b303d1a commit e515b47

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -289,11 +289,11 @@ True
289289
+--------------------+----------+----------+----------+----------+----------+
290290
| | Integral | Rational | Real | Complex | Number |
291291
+--------------------+----------+----------+----------+----------+----------+
292-
| int | Yes | Yes | Yes | Yes | Yes |
293-
| fractions.Fraction | | Yes | Yes | Yes | Yes |
294-
| float | | | Yes | Yes | Yes |
295-
| complex | | | | Yes | Yes |
296-
| decimal.Decimal | | | | | Yes |
292+
| int | yes | yes | yes | yes | yes |
293+
| fractions.Fraction | | yes | yes | yes | yes |
294+
| float | | | yes | yes | yes |
295+
| complex | | | | yes | yes |
296+
| decimal.Decimal | | | | | yes |
297297
+--------------------+----------+----------+----------+----------+----------+
298298
```
299299

@@ -337,11 +337,11 @@ String
337337
+---------------+----------+----------+----------+----------+----------+
338338
| | [ !#$%…] | [a-zA-Z] | [¼½¾] | [²³¹] | [0-9] |
339339
+---------------+----------+----------+----------+----------+----------+
340-
| isprintable() | Yes | Yes | Yes | Yes | Yes |
341-
| isalnum() | | Yes | Yes | Yes | Yes |
342-
| isnumeric() | | | Yes | Yes | Yes |
343-
| isdigit() | | | | Yes | Yes |
344-
| isdecimal() | | | | | Yes |
340+
| isprintable() | yes | yes | yes | yes | yes |
341+
| isalnum() | | yes | yes | yes | yes |
342+
| isnumeric() | | | yes | yes | yes |
343+
| isdigit() | | | | yes | yes |
344+
| isdecimal() | | | | | yes |
345345
+---------------+----------+----------+----------+----------+----------+
346346
```
347347
* **Also: `'isspace()'` checks for `'[ \t\n\r\f\v…]'`.**

index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -410,11 +410,11 @@
410410
<pre><code class="text language-text">+--------------------+----------+----------+----------+----------+----------+
411411
| | Integral | Rational | Real | Complex | Number |
412412
+--------------------+----------+----------+----------+----------+----------+
413-
| int | Yes | Yes | Yes | Yes | Yes |
414-
| fractions.Fraction | | Yes | Yes | Yes | Yes |
415-
| float | | | Yes | Yes | Yes |
416-
| complex | | | | Yes | Yes |
417-
| decimal.Decimal | | | | | Yes |
413+
| int | yes | yes | yes | yes | yes |
414+
| fractions.Fraction | | yes | yes | yes | yes |
415+
| float | | | yes | yes | yes |
416+
| complex | | | | yes | yes |
417+
| decimal.Decimal | | | | | yes |
418418
+--------------------+----------+----------+----------+----------+----------+
419419
</code></pre>
420420
<div><h2 id="string"><a href="#string" name="string">#</a>String</h2><pre><code class="python language-python hljs">&lt;str&gt; = &lt;str&gt;.strip() <span class="hljs-comment"># Strips all whitespace characters from both ends.</span>
@@ -445,11 +445,11 @@
445445
<div><h3 id="propertymethods">Property Methods</h3><pre><code class="text language-text">+---------------+----------+----------+----------+----------+----------+
446446
| | [ !#$%…] | [a-zA-Z] | [¼½¾] | [²³¹] | [0-9] |
447447
+---------------+----------+----------+----------+----------+----------+
448-
| isprintable() | Yes | Yes | Yes | Yes | Yes |
449-
| isalnum() | | Yes | Yes | Yes | Yes |
450-
| isnumeric() | | | Yes | Yes | Yes |
451-
| isdigit() | | | | Yes | Yes |
452-
| isdecimal() | | | | | Yes |
448+
| isprintable() | yes | yes | yes | yes | yes |
449+
| isalnum() | | yes | yes | yes | yes |
450+
| isnumeric() | | | yes | yes | yes |
451+
| isdigit() | | | | yes | yes |
452+
| isdecimal() | | | | | yes |
453453
+---------------+----------+----------+----------+----------+----------+
454454
</code></pre></div>
455455

0 commit comments

Comments
 (0)