Ticket #16580: memleak_test.py

File memleak_test.py, 130 bytes (added by Tom Goddard, 11 months ago)

Python to select and unselect 5000 times without using ChimeraX command parsing.

Line 
1from chimerax.std_commands.select import select, select_clear
2for i in range(5000):
3 select(session)
4 select_clear(session)