Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 102e457 commit cc78e47Copy full SHA for cc78e47
1 file changed
Lib/test/test_array.py
@@ -84,8 +84,13 @@ def testtype(type, example):
84
f = open(TESTFN, 'w')
85
a.tofile(f)
86
f.close()
87
+
88
+ # This block is just to verify that the operations don't blow up.
89
a.tolist()
90
a.tostring()
91
+ repr(a)
92
+ str(a)
93
94
if verbose:
95
print 'array of %s converted to a list: ' % a.typecode, a.tolist()
96
0 commit comments