summaryrefslogtreecommitdiffstats
path: root/Lib/test/buffer_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/buffer_tests.py')
-rw-r--r--Lib/test/buffer_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/buffer_tests.py b/Lib/test/buffer_tests.py
index 01ac3c5..db27759 100644
--- a/Lib/test/buffer_tests.py
+++ b/Lib/test/buffer_tests.py
@@ -1,11 +1,11 @@
-# Tests that work for both str8 (bytes) and bytes (buffer) objects.
+# Tests that work for both bytes and buffer objects.
# See PEP 3137.
import struct
import sys
class MixinBytesBufferCommonTests(object):
- """Tests that work for both str8 (bytes) and bytes (buffer) objects.
+ """Tests that work for both bytes and buffer objects.
See PEP 3137.
"""