Issue 3464: Python & NCURSES (original) (raw)
i have installed python 2.4 and ncurses 5.4 in my linux server.
Python script is working fine but when i tried using thread function in my script(which also uses ncurses) it gives the following error:
Traceback (most recent call last): File "xxxx.py", line 199, in ? curses.wrapper(AnDoRun) File "/usr/local/lib/python2.4/curses/wrapper.py", line 44, in wrapper return func(stdscr, *args, **kwds) File "xxxx.py", line 182, in AnDoRun ando.start() File "xxxx.py", line 136, in start self.proxyManagerThread.start() File "/usr/local/lib/python2.4/threading.py", line 416, in start _start_new_thread(self.__bootstrap, ()) thread.error: can't start new thread
help me how can i solve this problem ASAP