Skip to content

Commit 6dc8f05

Browse files
Fix markup in stdtypes documentation (GH-8905)
(cherry picked from commit 2e5d2ea) Co-authored-by: Andrés Delfino <[email protected]>
1 parent 80e9fed commit 6dc8f05

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Doc/library/stdtypes.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -409,13 +409,13 @@ This table lists the bitwise operations sorted in ascending priority:
409409
+------------+--------------------------------+----------+
410410
| Operation | Result | Notes |
411411
+============+================================+==========+
412-
| ``x | y`` | bitwise :dfn:`or` of *x* and | (4) |
412+
| ``x | y`` | bitwise :dfn:`or` of *x* and | \(4) |
413413
| | *y* | |
414414
+------------+--------------------------------+----------+
415-
| ``x ^ y`` | bitwise :dfn:`exclusive or` of | (4) |
415+
| ``x ^ y`` | bitwise :dfn:`exclusive or` of | \(4) |
416416
| | *x* and *y* | |
417417
+------------+--------------------------------+----------+
418-
| ``x & y`` | bitwise :dfn:`and` of *x* and | (4) |
418+
| ``x & y`` | bitwise :dfn:`and` of *x* and | \(4) |
419419
| | *y* | |
420420
+------------+--------------------------------+----------+
421421
| ``x << n`` | *x* shifted left by *n* bits | (1)(2) |
@@ -1065,10 +1065,10 @@ accepts integers that meet the value restriction ``0 <= x <= 255``).
10651065
| | sequence (same as | |
10661066
| | ``s[len(s):len(s)] = [x]``) | |
10671067
+------------------------------+--------------------------------+---------------------+
1068-
| ``s.clear()`` | removes all items from ``s`` | \(5) |
1068+
| ``s.clear()`` | removes all items from *s* | \(5) |
10691069
| | (same as ``del s[:]``) | |
10701070
+------------------------------+--------------------------------+---------------------+
1071-
| ``s.copy()`` | creates a shallow copy of ``s``| \(5) |
1071+
| ``s.copy()`` | creates a shallow copy of *s* | \(5) |
10721072
| | (same as ``s[:]``) | |
10731073
+------------------------------+--------------------------------+---------------------+
10741074
| ``s.extend(t)`` or | extends *s* with the | |

0 commit comments

Comments
 (0)