Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
13
Dependencies/Python/Lib/test/dtracedata/gc.py
vendored
Normal file
13
Dependencies/Python/Lib/test/dtracedata/gc.py
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
import gc
|
||||
|
||||
def start():
|
||||
gc.collect(0)
|
||||
gc.collect(1)
|
||||
gc.collect(2)
|
||||
l = []
|
||||
l.append(l)
|
||||
del l
|
||||
gc.collect(2)
|
||||
|
||||
gc.collect()
|
||||
start()
|
Reference in New Issue
Block a user