Hello.
I have the problem that breakpoints are not working for a new project whereas it works in another project. The difference is that the threads are this time created by a foreign module I use and not by my own code.
The most simple code to reproduce is as follows:
------
import wsgiserver
def my_app(environ, start_response):
status = '200 OK'
response_headers = [('Content-type','text/plain')]
start_response(status, response_headers)
return [b'WSGIserver is running!']
if __name__ == '__main__':
server = wsgiserver.WSGIServer(my_app)
server.start()
----
Before that of course you have to call "pip install WSGIserver" if you don't have the package already installed.
I also noticed that the pre-created threads of the thread pool are not visible from "Call Stack" in PyScripter
I tested with latest version of PyScripter and Python on Windows.
Any suggestions how this can be fixed ore worked arounr?
Thanks a lot.