Can't debug a Pyramid project in Eclipse/Pydev with Waitress
问题 I'm trying to setup a working IDE and starting to learn Python with Pyramid framework in a friendly environment like Eclipse/Pydev. All is working ok (debug, breakpoints included) if I use the old pastescript server by replacing: use = egg:waitress#main --> use = egg:Paste#http in development.ini. The problem is that the new "way to go" is to use waitress which is supported in Python 3+ versions and pastescript only works on 2.x. I would want to know if there is any kind of known issue