From 8d5a7ba001e35b494e4e678ea81ec596cbb79d55 2019-08-30 16:41:14 From: Matthias Bussonnier Date: 2019-08-30 16:41:14 Subject: [PATCH] update 7.8 what's new --- diff --git a/docs/source/whatsnew/development.rst b/docs/source/whatsnew/development.rst index 532ba74..27afd6f 100644 --- a/docs/source/whatsnew/development.rst +++ b/docs/source/whatsnew/development.rst @@ -23,6 +23,7 @@ Need to be updated: pr/* + .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. diff --git a/docs/source/whatsnew/pr/expose-pdb-api.rst b/docs/source/whatsnew/pr/expose-pdb-api.rst deleted file mode 100644 index 87eea77..0000000 --- a/docs/source/whatsnew/pr/expose-pdb-api.rst +++ /dev/null @@ -1,15 +0,0 @@ -Expose Pdb API -=================== - -Expose the built-in ``pdb.Pdb`` API. ``Pdb`` constructor arguments are generically -exposed, regardless of python version. -Newly exposed arguments: - -- ``skip`` - Python 3.1+ -- ``nosiginnt`` - Python 3.2+ -- ``readrc`` - Python 3.6+ - -Try it out:: - - from IPython.terminal.debugger import TerminalPdb - pdb = TerminalPdb(skip=["skipthismodule"]) diff --git a/docs/source/whatsnew/version7.rst b/docs/source/whatsnew/version7.rst index 2830589..8e78853 100644 --- a/docs/source/whatsnew/version7.rst +++ b/docs/source/whatsnew/version7.rst @@ -2,6 +2,35 @@ 7.x Series ============ +.. _version780: + +IPython 7.8.0 +============= + +IPython 7.8.0 contain a few bugfix and 2 new APIs: + + - Enable changing the font color for LaTeX rendering :ghpull:`11840` + - and Re-Expose some PDB API (see below) + +Expose Pdb API +-------------- + +Expose the built-in ``pdb.Pdb`` API. ``Pdb`` constructor arguments are generically +exposed, regardless of python version. +Newly exposed arguments: + +- ``skip`` - Python 3.1+ +- ``nosiginnt`` - Python 3.2+ +- ``readrc`` - Python 3.6+ + +Try it out:: + + from IPython.terminal.debugger import TerminalPdb + pdb = TerminalPdb(skip=["skipthismodule"]) + + +See :ghpull:`11840` + .. _version770: IPython 7.7.0