Bugs item #1523465, was opened at 2006-07-16 13:40 Message generated for change (Comment added) made by tim_one You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1523465&group_id=5470
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Threads Group: Python 2.5 Status: Open Resolution: None Priority: 5 Submitted By: roee88 (roee88) Assigned to: Nobody/Anonymous (nobody) Summary: threading.Thread Traceback Initial Comment: I'm using the following line in my application: Thread(target = open_new(dest)).start() dest is file path set by user. Got this traceback with python 2.5: File "C:\python25\lib\threading.py", line 460, in __boostrap self.run() File "C:\python25\threading.py, line 440, in run self.__target(*self.__args, **self.kwargs) TypeError: 'bool' object is not callable Worked well with python 2.4 . OS: windows XP 32 bit. Searched for a similar bug report but couldn't find one, sorry if it already been reported. ---------------------------------------------------------------------- >Comment By: Tim Peters (tim_one) Date: 2006-07-16 15:01 Message: Logged In: YES user_id=31435 What does `open_new` return? What does print type(open_new(dest)) display in a failing case? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1523465&group_id=5470 _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com