On Wed, Apr 10, 2013 at 11:07:44AM -0600, Aaron Meurer wrote: > The documentation already says this.
I may have missed it. Neither the README on PyPI nor the README on GitHub appear to mention it. > I just thought that it would fail only if the signal was actually > sent. I didn't realize it would crash pudb just by setting the > handler! Apparently, it's a Python 'feature'. The ability to bind signals from non-main threads varies depending on the underlying platform, and in order to behave the same everywhere, Python just goes and forbids it altogether. Even if the threading implementation on /your/ platform would allow it. Meh. > Can you give a basic script to reproduce your error? Err, I'm not the person who submitted that bug report. -- S. _______________________________________________ Pudb mailing list [email protected] http://lists.tiker.net/listinfo/pudb
