Skip to content

Commit d00c981

Browse files
committed
gh-146238: add missing tests for 'e' type code in test_buffer.py
This amends e79fd60. I'll not fix this for 'F'/'D' complex types as they might be removed.
1 parent 3efd2f4 commit d00c981

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def native_type_range(fmt):
143143
# Format codes supported by array.array
144144
ARRAY = NATIVE.copy()
145145
for k in NATIVE:
146-
if not k in "bBhHiIlLfd":
146+
if not k in "bBhHiIlLefd":
147147
del ARRAY[k]
148148

149149
BYTEFMT = NATIVE.copy()

0 commit comments

Comments
 (0)