Skip to content

Commit 7e53089

Browse files
committed
CLN remove py3 note on print >>s
1 parent 8def938 commit 7e53089

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,8 @@ def test_to_string_buffer_all_unicode(self):
337337
empty = DataFrame({u'c/\u03c3': Series()})
338338
nonempty = DataFrame({u'c/\u03c3': Series([1, 2, 3])})
339339

340-
print >>buf, empty # TODO py3?
341-
print >>buf, nonempty # TODO py3?
340+
print >>buf, empty
341+
print >>buf, nonempty
342342

343343
# this should work
344344
buf.getvalue()

0 commit comments

Comments
 (0)