On Mon, Nov 4, 2013 at 1:07 AM, Ryan Gonzalez <[email protected]> wrote: > If I'm implementing my own language in RPython, can I use the same garbage > collector that PyPy uses? Or do I have to write my own? > > -- > Ryan > > _______________________________________________ > pypy-dev mailing list > [email protected] > https://mail.python.org/mailman/listinfo/pypy-dev >
Yes, you can use the same GC. RPython is a garbage collected language. In fact you can use the same JIT. _______________________________________________ pypy-dev mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-dev
