Cross-OS remote debugging
description
It would be extremely useful if PTVS supported remote debugging on non-windows machines.
This could be easily done in a way similar to how winpdb or eclipse pydev work: You import the debugger module in your code and then call either a function which immediately breaks (similar to debugger; in javascript) or one that simply starts the debugging server.
The advantage of this would be being able to keep the platform independency of python - for example, a webapp i work on runs better on linux so I run it via WSGI/Apache on a linux system but access it through a SMB share from my windows machine. And even though that case might be a bit special I guess quite some users who work with multiple OSs would appreciate being able to use their favourite IDE even for debugging on the other OS.