Issue #17516: remove dead code

This commit is contained in:
Victor Stinner 2013-03-26 01:14:35 +01:00
parent 3fa1aaebde
commit 678ad51b38
3 changed files with 0 additions and 9 deletions

View file

@ -2054,7 +2054,6 @@ class StringIO(TextIOWrapper):
if not isinstance(initial_value, str):
raise TypeError("initial_value must be str or None, not {0}"
.format(type(initial_value).__name__))
initial_value = str(initial_value)
self.write(initial_value)
self.seek(0)