summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_array.py
diff options
context:
space:
mode:
authorXie Yanbo <xieyanbo@gmail.com>2024-08-07 06:39:16 (GMT)
committerGitHub <noreply@github.com>2024-08-07 06:39:16 (GMT)
commitb6c80e21c78ea86fb12b331f69881a586ed487e0 (patch)
treef3ccb152fa27be8da9e6fb84217e5c657d541c18 /Lib/test/test_array.py
parent98dba73010e807e613b9400e8c4b411302498728 (diff)
downloadcpython-b6c80e21c78ea86fb12b331f69881a586ed487e0.zip
cpython-b6c80e21c78ea86fb12b331f69881a586ed487e0.tar.gz
cpython-b6c80e21c78ea86fb12b331f69881a586ed487e0.tar.bz2
Fix typos in comments and docstring (#122720)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Lib/test/test_array.py')
-rwxr-xr-xLib/test/test_array.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py
index 47cbe60..f621f34 100755
--- a/Lib/test/test_array.py
+++ b/Lib/test/test_array.py
@@ -1492,7 +1492,7 @@ class FPTest(NumberTest):
if a.itemsize==1:
self.assertEqual(a, b)
else:
- # On alphas treating the byte swapped bit patters as
+ # On alphas treating the byte swapped bit patterns as
# floats/doubles results in floating-point exceptions
# => compare the 8bit string values instead
self.assertNotEqual(a.tobytes(), b.tobytes())