@@ -409,13 +409,13 @@ This table lists the bitwise operations sorted in ascending priority:
409
409
+------------+--------------------------------+----------+
410
410
| Operation | Result | Notes |
411
411
+============+================================+==========+
412
- | ``x | y`` | bitwise :dfn: `or ` of *x * and | (4) |
412
+ | ``x | y`` | bitwise :dfn: `or ` of *x * and | \ ( 4) |
413
413
| | *y * | |
414
414
+------------+--------------------------------+----------+
415
- | ``x ^ y `` | bitwise :dfn: `exclusive or ` of | (4) |
415
+ | ``x ^ y `` | bitwise :dfn: `exclusive or ` of | \ ( 4) |
416
416
| | *x * and *y * | |
417
417
+------------+--------------------------------+----------+
418
- | ``x & y `` | bitwise :dfn: `and ` of *x * and | (4) |
418
+ | ``x & y `` | bitwise :dfn: `and ` of *x * and | \ ( 4) |
419
419
| | *y * | |
420
420
+------------+--------------------------------+----------+
421
421
| ``x << n `` | *x * shifted left by *n * bits | (1)(2) |
@@ -1065,10 +1065,10 @@ accepts integers that meet the value restriction ``0 <= x <= 255``).
1065
1065
| | sequence (same as | |
1066
1066
| | ``s[len(s):len(s)] = [x] ``) | |
1067
1067
+------------------------------+--------------------------------+---------------------+
1068
- | ``s.clear() `` | removes all items from `` s `` | \( 5) |
1068
+ | ``s.clear() `` | removes all items from * s * | \( 5) |
1069
1069
| | (same as ``del s[:] ``) | |
1070
1070
+------------------------------+--------------------------------+---------------------+
1071
- | ``s.copy() `` | creates a shallow copy of `` s`` | \(5) |
1071
+ | ``s.copy() `` | creates a shallow copy of * s * | \( 5) |
1072
1072
| | (same as ``s[:] ``) | |
1073
1073
+------------------------------+--------------------------------+---------------------+
1074
1074
| ``s.extend(t) `` or | extends *s * with the | |
0 commit comments