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

@@ -33,11 +33,6 @@ print(bytes(3))
print(bytes([3, 2, 1]))
print(bytes(range(5)))
def gen():
for i in range(4):
yield i
print(bytes(gen()))
# Make sure bytes are not mistreated as unicode
x = b"\xff\x8e\xfe}\xfd\x7f"
print(len(x))