mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-19 19:10:17 +00:00
10 lines
124 B
Python
10 lines
124 B
Python
a=[]
|
|
import gc
|
|
gc.collect()
|
|
|
|
# a.append(a)
|
|
print(list(globals().items()))
|
|
del a
|
|
print(list(globals().items()))
|
|
gc.collect()
|