We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae6b409 commit 90f681bCopy full SHA for 90f681b
1 file changed
tests/testapp_nogui/main.py
@@ -9,6 +9,20 @@
9
for i in range(45, 50):
10
print(i, sqrt(i))
11
12
+print('trying to import six')
13
+try:
14
+ import six
15
+except ImportError:
16
+ print('import failed')
17
+
18
19
+print('trying to import six again')
20
21
22
23
+ print('import failed (again?)')
24
+print('import six worked!')
25
26
print('Just printing stuff apparently worked, trying pyjnius')
27
28
import jnius
0 commit comments