##// END OF EJS Templates
Use prompt_toolkit.application.create_app_session for debugger prompt (#13889)...
Use prompt_toolkit.application.create_app_session for debugger prompt (#13889) Running the debugger prompt in the default `prompt_toolkit` session causes issues when more than one prompt_toolkit app is running simultaneously. I'm encountering this while trying to debug multiple threads using [madbg](https://github.com/kmaork/madbg). The errors look exactly like those mentioned in #12192. This commit solves this by using the dedicated API from prompt_toolkit. BTW, this PR combined with #13311 should be enough to close #12192.

File last commit:

r28221:62c0a38c
r28319:984ec854 merge
Show More
MANIFEST.in
46 lines | 846 B | text/plain | TextLexer
include README.rst
include COPYING.rst
include LICENSE
include setupbase.py
include MANIFEST.in
include py.typed
include .mailmap
include .flake8
include .pre-commit-config.yaml
include long_description.rst
recursive-exclude tools *
exclude tools
exclude CONTRIBUTING.md
exclude .editorconfig
exclude SECURITY.md
graft scripts
# Load main dir but exclude things we don't want in the distro
graft IPython
# Documentation
graft docs
exclude docs/\#*
exclude docs/man/*.1.gz
exclude .git-blame-ignore-revs
# Examples
graft examples
# docs subdirs we want to skip
prune docs/build
prune docs/gh-pages
prune docs/dist
# Patterns to exclude from any directory
global-exclude *~
global-exclude *.flc
global-exclude *.yml
global-exclude *.pyc
global-exclude *.pyo
global-exclude .dircopy.log
global-exclude .git
global-exclude .ipynb_checkpoints