tests: Fix uctypes tests to run on 64bit arch; enable more native tests.

This commit is contained in:
Damien George
2014-09-23 12:09:26 +00:00
parent 5a5555e385
commit 96e20c600f
5 changed files with 9 additions and 11 deletions

View File

@@ -0,0 +1,5 @@
# construct a bytes object from a generator
def gen():
for i in range(4):
yield i
print(bytes(gen()))