##// 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:

r24269:21325702
r28319:984ec854 merge
Show More
COPYING.rst
41 lines | 1.6 KiB | text/x-rst | RstLexer
Fernando Perez
Reflow license file and update with link to Github IPython org page.
r3203 =============================
The IPython licensing terms
=============================
Brian E Granger
Creating new COPYING.txt that is copied over from ipython1-dev.
r1249
Fernando Perez
Reflow license file and update with link to Github IPython org page.
r3203 IPython is licensed under the terms of the Modified BSD License (also known as
Thomas Kluyver
Tweak wording referring to LICENSE
r24269 New or Revised or 3-Clause BSD). See the LICENSE file.
Fernando Perez
Reflow license file and update with link to Github IPython org page.
r3203
Brian E Granger
Creating new COPYING.txt that is copied over from ipython1-dev.
r1249
About the IPython Development Team
----------------------------------
Fernando Perez
Reflow license file and update with link to Github IPython org page.
r3203 Fernando Perez began IPython in 2001 based on code from Janko Hauser
<jhauser@zscout.de> and Nathaniel Gray <n8gray@caltech.edu>. Fernando is still
the project lead.
The IPython Development Team is the set of all contributors to the IPython
Matthias Bussonnier
Update LICENCE and Copying to match....
r24268 project. This includes all of the IPython subprojects.
Brian E Granger
Cleaning up the IPython docs. I have removed old README files that were outdated and being maintained...
r1250
Fernando Perez
Reflow license file and update with link to Github IPython org page.
r3203 The core team that coordinates development on GitHub can be found here:
Jonathan Frederic
Update COPYING.txt...
r15988 https://github.com/ipython/.
Brian E Granger
Creating new COPYING.txt that is copied over from ipython1-dev.
r1249
Our Copyright Policy
--------------------
Fernando Perez
Reflow license file and update with link to Github IPython org page.
r3203 IPython uses a shared copyright model. Each contributor maintains copyright
over their contributions to IPython. But, it is important to note that these
Brian E Granger
Creating new COPYING.txt that is copied over from ipython1-dev.
r1249 contributions are typically only changes to the repositories. Thus, the IPython
source code, in its entirety is not the copyright of any single person or
Fernando Perez
Reflow license file and update with link to Github IPython org page.
r3203 institution. Instead, it is the collective copyright of the entire IPython
Development Team. If individual contributors want to maintain a record of what
changes/contributions they have specific copyright on, they should indicate
their copyright in the commit message of the change, when they commit the
change to one of the IPython repositories.
Brian E Granger
Creating new COPYING.txt that is copied over from ipython1-dev.
r1249
Jonathan Frederic
Update COPYING.txt...
r15988 With this in mind, the following banner should be used in any source code file
Fernando Perez
Reflow license file and update with link to Github IPython org page.
r3203 to indicate the copyright and license terms:
Brian E Granger
Creating new COPYING.txt that is copied over from ipython1-dev.
r1249
Jonathan Frederic
Update COPYING.txt...
r15988 ::
MinRK
remove weird unicode space in the new copyright header...
r16141 # Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.