Is there a source code level debugger with breakpoints, single-stepping, etc.?
Is there a source code level debugger with breakpoints, single-stepping, etc.? Yes. Several debuggers for Python are described below, and the built-in function breakpoint() allows you to drop into any of them. The pdb module is a simple but adequate console-mode debugger for Python. It is part of the standard Python library, and is documented in the Library Reference Manual. You[ ► ]
Are there copyright restrictions on the use of Python?
Are there copyright restrictions on the use of Python? You can do anything you want with the source, as long as you leave the copyrights in and display those copyrights in any documentation about Python that you produce. If you honor the copyright rules, it’s OK to use Python for commercial use, to sell[ ► ]


