Browse Source

Reorganize python-imports to include "curses"

Tianon Gravi 10 years ago
parent
commit
135b7baaf8
1 changed files with 4 additions and 3 deletions
  1. 4 3
      test/tests/python-imports/container.py

+ 4 - 3
test/tests/python-imports/container.py

@@ -1,6 +1,7 @@
-import zlib
-import bz2
+import curses
 
+import zlib
 assert(zlib.decompress(zlib.compress(b'IT WORKS IT WORKS IT WORKS')) == b'IT WORKS IT WORKS IT WORKS')
-assert(bz2.decompress(bz2.compress(b'IT WORKS IT WORKS IT WORKS')) == b'IT WORKS IT WORKS IT WORKS')
 
+import bz2
+assert(bz2.decompress(bz2.compress(b'IT WORKS IT WORKS IT WORKS')) == b'IT WORKS IT WORKS IT WORKS')