[issue1175194] import statement likely to crash if module launches threads

2008-02-23 Thread Georg Brandl
Georg Brandl added the comment: The documentation has now been updated to reflect this. -- nosy: +georg.brandl resolution: invalid - duplicate status: pending - closed _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1175194

[issue1175194] import statement likely to crash if module launches threads

2008-01-19 Thread Christian Heimes
Christian Heimes added the comment: Don't spawn new threads at module level. An import must never trigger the creation of a new thread. It's a design issue on your side. But you can blame us for not documenting the issues with imports and threads. ;) -- components: +Documentation nosy: