Skip to content

Commit

Permalink
fixup! pythongh-80480 Deprecate array's 'u' type code
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Aug 7, 2022
1 parent d86d4be commit 39bf673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ def test_float_write(self):

def test_char_write(self):
import array, string
with self.assertRaises(DeprecationWarning):
with self.assertRaises(DeprecationWarning):
a = array.array('u', string.ascii_letters)

with TemporaryFile("w+", encoding="utf-8", newline='') as fileobj:
Expand Down

0 comments on commit 39bf673

Please sign in to comment.