[Python-Dev] Bug? is Tkinter+no threads+Windows supported?

Neil Schemenauer nas@python.ca
Tue, 22 Jan 2002 07:02:12 -0800


montanaro@tttech.com wrote:
> My client is trying to build a version of Python on Windows with Tkinter and
> pymalloc enabled, and threads disabled (in part because pymalloc is not
> thread-safe).

Using pymalloc with threads should be safe as long as you don't have
extensions that call pymalloc without the big lock held.

  Neil