##// END OF EJS Templates
utils: coloransi: Escape Unicode U0001 and U0002 non-printable characters....
utils: coloransi: Escape Unicode U0001 and U0002 non-printable characters. Fixes #13637. These Unicode characters, would cause problems when processed by LaTeX to generate the info or PDF documentation targets. * IPython/utils/coloransi.py (InputTermColors): Escape the backslashes in \001 and \002 so that they are shown as literals '\001' and '\002' strings in the Sphinx-generated documentation rather than as non-printable Unicode characters.

File last commit:

r27538:422f8d9c
r27688:f20e3b80
Show More
debugger.py
167 lines | 6.0 KiB | text/x-python | PythonLexer
Jonathan Slenders
Use separate asyncio event loop for user input in debugger.
r25342 import asyncio
Matthias Bussonnier
Add history file to debugger....
r26809 import os
Thomas Kluyver
Add Ctrl-Z shortcut (suspend) in terminal debugger...
r23318 import sys
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391 from IPython.core.debugger import Pdb
from IPython.core.completer import IPCompleter
from .ptutils import IPythonPTCompleter
Blazej Michalik
ipdb: remove unused imports
r26323 from .shortcuts import create_ipython_shortcuts
Iwan Briquemont
Start embedded IPython shell for ipdb interact, #12913
r26465 from . import embed
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391
Matthias Bussonnier
Add history file to debugger....
r26809 from pathlib import Path
Jonathan Slenders
Upgrade to prompt_toolkit 2.0
r24376 from pygments.token import Token
from prompt_toolkit.shortcuts.prompt import PromptSession
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391 from prompt_toolkit.enums import EditingMode
Jonathan Slenders
Upgrade to prompt_toolkit 2.0
r24376 from prompt_toolkit.formatted_text import PygmentsTokens
Matthias Bussonnier
Add history file to debugger....
r26809 from prompt_toolkit.history import InMemoryHistory, FileHistory
Maor Kleinberger
Use ThreadPoolExecutor for debugger cmdloop
r27108 from concurrent.futures import ThreadPoolExecutor
tillahoffmann
Add frame parameter to terminal debugger.
r22874
Matthias Bussonnier
Add prompt toolkit 3 compatibility to ipdb...
r25279 from prompt_toolkit import __version__ as ptk_version
PTK3 = ptk_version.startswith('3.')
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391
class TerminalPdb(Pdb):
Terry Davis
Add class-docstring for terminal.debugger.TerminalPdb....
r25174 """Standalone IPython debugger."""
Maor Kleinberger
Allow passing extra options to TerminalPdb.pt_init...
r25868 def __init__(self, *args, pt_session_options=None, **kwargs):
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391 Pdb.__init__(self, *args, **kwargs)
self._ptcomp = None
Maor Kleinberger
Allow passing extra options to TerminalPdb.pt_init...
r25868 self.pt_init(pt_session_options)
Maor Kleinberger
Use ThreadPoolExecutor for debugger cmdloop
r27108 self.thread_executor = ThreadPoolExecutor(1)
Maor Kleinberger
Allow passing extra options to TerminalPdb.pt_init...
r25868
def pt_init(self, pt_session_options=None):
"""Initialize the prompt session and the prompt loop
and store them in self.pt_app and self.pt_loop.
Blazej Michalik
ipdb: fix formatting in terminal.debugger
r26324
Maor Kleinberger
Allow passing extra options to TerminalPdb.pt_init...
r25868 Additional keyword arguments for the PromptSession class
can be specified in pt_session_options.
"""
if pt_session_options is None:
pt_session_options = {}
Blazej Michalik
ipdb: fix formatting in terminal.debugger
r26324
Jonathan Slenders
Upgrade to prompt_toolkit 2.0
r24376 def get_prompt_tokens():
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391 return [(Token.Prompt, self.prompt)]
if self._ptcomp is None:
Blazej Michalik
Darken terminal.debugger and core.debugger
r26328 compl = IPCompleter(
shell=self.shell, namespace={}, global_namespace={}, parent=self.shell
)
Matthias Bussonnier
Implement understanding on __tracebackhide__...
r25839 # add a completer for all the do_ methods
methods_names = [m[3:] for m in dir(self) if m.startswith("do_")]
def gen_comp(self, text):
return [m for m in methods_names if m.startswith(text)]
import types
newcomp = types.MethodType(gen_comp, compl)
compl.custom_matchers.insert(0, newcomp)
# end add completer.
Jonathan Slenders
Upgrade to prompt_toolkit 2.0
r24376 self._ptcomp = IPythonPTCompleter(compl)
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391
Matthias Bussonnier
Add history file to debugger....
r26809 # setup history only when we start pdb
if self.shell.debugger_history is None:
if self.shell.debugger_history_file is not None:
p = Path(self.shell.debugger_history_file).expanduser()
if not p.exists():
p.touch()
self.debugger_history = FileHistory(os.path.expanduser(str(p)))
else:
self.debugger_history = InMemoryHistory()
Can Sarigol
Get history file from shell to debugger if it exists.
r27538 else:
self.debugger_history = self.shell.debugger_history
Matthias Bussonnier
Add history file to debugger....
r26809
Matthias Bussonnier
Add prompt toolkit 3 compatibility to ipdb...
r25279 options = dict(
message=(lambda: PygmentsTokens(get_prompt_tokens())),
editing_mode=getattr(EditingMode, self.shell.editing_mode.upper()),
Daniel Hahler
Use default shortcuts with terminal debugger...
r25494 key_bindings=create_ipython_shortcuts(self.shell),
Matthias Bussonnier
Fix debugger history outside of IPython....
r27137 history=self.debugger_history,
Matthias Bussonnier
Add prompt toolkit 3 compatibility to ipdb...
r25279 completer=self._ptcomp,
enable_history_search=True,
mouse_support=self.shell.mouse_support,
complete_style=self.shell.pt_complete_style,
Matthias Bussonnier
Allow decorator frames to be marked as skippable....
r26810 style=getattr(self.shell, "style", None),
Matthias Bussonnier
Add prompt toolkit 3 compatibility to ipdb...
r25279 color_depth=self.shell.color_depth,
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391 )
Matthias Bussonnier
Add prompt toolkit 3 compatibility to ipdb...
r25279 if not PTK3:
Matthias Bussonnier
Fix the right inputhook...
r25325 options['inputhook'] = self.shell.inputhook
Maor Kleinberger
Allow passing extra options to TerminalPdb.pt_init...
r25868 options.update(pt_session_options)
Jonathan Slenders
Use separate asyncio event loop for user input in debugger.
r25342 self.pt_loop = asyncio.new_event_loop()
Matthias Bussonnier
Add prompt toolkit 3 compatibility to ipdb...
r25279 self.pt_app = PromptSession(**options)
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391 def cmdloop(self, intro=None):
"""Repeatedly issue a prompt, accept input, parse an initial prefix
off the received input, and dispatch to action methods, passing them
the remainder of the line as argument.
override the same methods from cmd.Cmd to provide prompt toolkit replacement.
"""
if not self.use_rawinput:
raise ValueError('Sorry ipdb does not support use_rawinput=False')
Jonathan Slenders
Run ipdb in separate thread (required when using within asyncio applications).
r25511 # In order to make sure that prompt, which uses asyncio doesn't
# interfere with applications in which it's used, we always run the
# prompt itself in a different thread (we can't start an event loop
# within an event loop). This new thread won't have any event loop
# running, and here we run our prompt-loop.
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391 self.preloop()
try:
if intro is not None:
self.intro = intro
if self.intro:
Maor Kleinberger
Use ThreadPoolExecutor for debugger cmdloop
r27108 print(self.intro, file=self.stdout)
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391 stop = None
while not stop:
if self.cmdqueue:
line = self.cmdqueue.pop(0)
else:
self._ptcomp.ipy_completer.namespace = self.curframe_locals
self._ptcomp.ipy_completer.global_namespace = self.curframe.f_globals
Jonathan Slenders
Use separate asyncio event loop for user input in debugger.
r25342
Jonathan Slenders
Run ipdb in separate thread (required when using within asyncio applications).
r25511 # Run the prompt in a different thread.
Maor Kleinberger
Use ThreadPoolExecutor for debugger cmdloop
r27108 try:
line = self.thread_executor.submit(self.pt_app.prompt).result()
except EOFError:
line = "EOF"
Thomas Kluyver
Create separate class for debugger using prompt_toolkit
r22391 line = self.precmd(line)
stop = self.onecmd(line)
stop = self.postcmd(stop, line)
self.postloop()
except Exception:
raise
Matthias Bussonnier
Make clearer and simpler how to user prompt-toolkit PDB...
r22724
Iwan Briquemont
Start embedded IPython shell for ipdb interact, #12913
r26465 def do_interact(self, arg):
ipshell = embed.InteractiveShellEmbed(
config=self.shell.config,
banner1="*interactive*",
Matthias Bussonnier
Update IPython/terminal/debugger.py...
r26466 exit_msg="*exiting interactive console...*",
Iwan Briquemont
Start embedded IPython shell for ipdb interact, #12913
r26465 )
global_ns = self.curframe.f_globals
ipshell(
module=sys.modules.get(global_ns["__name__"], None),
local_ns=self.curframe_locals,
)
tillahoffmann
Add frame parameter to terminal debugger.
r22874
def set_trace(frame=None):
"""
Start debugging from `frame`.
If frame is not specified, debugging starts from caller's frame.
"""
TerminalPdb().set_trace(frame or sys._getframe().f_back)
Matthias Bussonnier
Make clearer and simpler how to user prompt-toolkit PDB...
r22724
mbyt
-m IPython.terminal.debugger...
r22858
if __name__ == '__main__':
import pdb
mbyt
enable quitting for -m IPython.terminal.debugger
r22879 # IPython.core.debugger.Pdb.trace_dispatch shall not catch
mbyt
fixing typo in comment
r22901 # bdb.BdbQuit. When started through __main__ and an exception
mbyt
fixing another typo in comment
r22902 # happened after hitting "c", this is needed in order to
mbyt
enable quitting for -m IPython.terminal.debugger
r22879 # be able to quit the debugging session (see #9950).
old_trace_dispatch = pdb.Pdb.trace_dispatch
Matthias Bussonnier
update
r26485 pdb.Pdb = TerminalPdb # type: ignore
pdb.Pdb.trace_dispatch = old_trace_dispatch # type: ignore
mbyt
-m IPython.terminal.debugger...
r22858 pdb.main()