This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author 3Jane
Recipients 3Jane
Date 2009-11-20.13:22:46
SpamBayes Score 6.56548e-10
Marked as misclassified No
Message-id <1258723369.04.0.0815144393289.issue7368@psf.upfronthosting.co.za>
In-reply-to
Content
On Nov.20, 2009 i got the traceback below from Python 3.1.1 under
WindowsXP-SP3, as several times before. From code with 

def _core(func, my_args):
    A = Thread(target = func, args = my_args); A.start(); A.join()
_core(ask_user, (question, default_answer))

Doesn't matter from what, the traceback is showing no calling line (thus
there is at least a slip in threading.py's exception handlers):

Unhandled exception in thread started by <bound method Thread._bootstrap
of <Thread(Thread-1, stopped 288)>>
Traceback (most recent call last):
  File "D:\Programme\Python31\lib\threading.py", line 482, in _bootstrap
    self._bootstrap_inner()
  File "D:\Programme\Python31\lib\threading.py", line 558, in
_bootstrap_inner
    self._stop()
  File "D:\Programme\Python31\lib\threading.py", line 569, in _stop
    self._block.notify_all()
  File "D:\Programme\Python31\lib\threading.py", line 273, in notify_all
    self.notify(len(self._waiters))
  File "D:\Programme\Python31\lib\threading.py", line 265, in notify
    for waiter in waiters:
TypeError: function takes exactly 1 argument (0 given)
History
Date User Action Args
2009-11-20 13:22:493Janesetrecipients: + 3Jane
2009-11-20 13:22:493Janesetmessageid: <1258723369.04.0.0815144393289.issue7368@psf.upfronthosting.co.za>
2009-11-20 13:22:473Janelinkissue7368 messages
2009-11-20 13:22:463Janecreate