On Mon, Jun 19, 2017 at 9:20 AM, Ethan Furman <ethan at stoneleaf.us> wrote: > Reference counting is a valid garbage collecting mechanism, therefore > Python is also a GC language. Garbage collection is usually thought of as a way to remove responsibility for tracking of live data from the user. Reference counting doesn't do that. Skip