kopia lustrzana https://github.com/micropython/micropython
25 wiersze
427 B
Python
25 wiersze
427 B
Python
# test memoryview retains pointer to original object/buffer
|
|
try:
|
|
memoryview
|
|
except:
|
|
import sys
|
|
print("SKIP")
|
|
sys.exit()
|
|
|
|
b = bytearray(10)
|
|
m = memoryview(b)[1:]
|
|
for i in range(len(m)):
|
|
m[i] = i
|
|
|
|
# reclaim b, but hopefully not the buffer
|
|
b = None
|
|
import gc
|
|
gc.collect()
|
|
|
|
# allocate lots of memory
|
|
for i in range(100000):
|
|
[42, 42, 42, 42]
|
|
|
|
# check that the memoryview is still what we want
|
|
print(list(m))
|