Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[HOT-FIX] use cStringIO instead of StringIO;
  • Loading branch information
opalczynski committed Sep 27, 2016
commit f564a04f132fab4b743e5212e13ba460091d27d7
2 changes: 1 addition & 1 deletion tests/integration_test_data_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

try:
# python2
from StringIO import StringIO
from cStringIO import StringIO
except ImportError:
# python3
from io import StringIO
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests_hosting.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

try:
# python2
from StringIO import StringIO
from cStringIO import StringIO
except ImportError:
# python3
from io import StringIO
Expand Down