Deleting a Sequence

How does one delete a Sequence? Will a simple “del mySequence” clean it up entirely?

My intention is to be able to cancel a Sequence: pause it, then destroy it without it ever finishing.

Just pause() it and get rid of all other references to it, like any other object. Pausing it is sufficient to remove it from the interval manager.

Keep in mind that “del X” does not do anything that “X = None” doesn’t do; it is nothing like the “delete” keyword in C++.

Ah, thank you, on both counts. :slight_smile: