##// END OF EJS Templates
update 7.8 what's new
Matthias Bussonnier -
Show More
@@ -23,6 +23,7 b' Need to be updated:'
23 pr/*
23 pr/*
24
24
25
25
26
26 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
27 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
27
28
28
29
@@ -2,6 +2,35 b''
2 7.x Series
2 7.x Series
3 ============
3 ============
4
4
5 .. _version780:
6
7 IPython 7.8.0
8 =============
9
10 IPython 7.8.0 contain a few bugfix and 2 new APIs:
11
12 - Enable changing the font color for LaTeX rendering :ghpull:`11840`
13 - and Re-Expose some PDB API (see below)
14
15 Expose Pdb API
16 --------------
17
18 Expose the built-in ``pdb.Pdb`` API. ``Pdb`` constructor arguments are generically
19 exposed, regardless of python version.
20 Newly exposed arguments:
21
22 - ``skip`` - Python 3.1+
23 - ``nosiginnt`` - Python 3.2+
24 - ``readrc`` - Python 3.6+
25
26 Try it out::
27
28 from IPython.terminal.debugger import TerminalPdb
29 pdb = TerminalPdb(skip=["skipthismodule"])
30
31
32 See :ghpull:`11840`
33
5 .. _version770:
34 .. _version770:
6
35
7 IPython 7.7.0
36 IPython 7.7.0
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now