This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Home
ipydbg is a debugger for IronPython applications. As IronPython doesn’t implement sys.settrace (yet), the standard Python debugger pdb doesn’t work. Instead of settrace, ipydbg uses the underlying CLR debugging API. It leverages some code from the MDbg command line debugger that ships in the .NET Framework SDK.
ipydbg is written by Harry Pierson, program manager for the IronPython project at Microsoft. He writes the weblog DevHawk and he has chronicled the ongoing development of ipydbg there.
Existing Functionality
- automatically break on first line of python code
- step into, over and out
- Just-My-Code (so can bypass stepping thru the IronPython implementation
- Stack trace (Python only and full)
Features in active development
- View Locals
- Debugger REPL
- Breakpoint Manager
- Command Routing System
Features to be implemented
- function evaluation
- View Globals
- Stack Frame Traversal
- Help System
- Setting in-scope variables
- showing fields for classes







