Show More
@@ -23,38 +23,10 b' Need to be updated:' | |||||
23 | pr/* |
|
23 | pr/* | |
24 |
|
24 | |||
25 |
|
25 | |||
26 | Unicode name completions |
|
|||
27 | ======================== |
|
|||
28 |
|
||||
29 | Previously, we provided completion for a unicode name with its relative symbol. |
|
|||
30 | With this, now IPython provides complete suggestions to unicode name symbols. |
|
|||
31 |
|
||||
32 | As on the PR, if user types ``\LAT<tab>``, IPython provides a list of |
|
|||
33 | possible completions. In this case, it would be something like: |
|
|||
34 |
|
||||
35 | 'LATIN CAPITAL LETTER A', |
|
|||
36 | 'LATIN CAPITAL LETTER B', |
|
|||
37 | 'LATIN CAPITAL LETTER C', |
|
|||
38 | 'LATIN CAPITAL LETTER D', |
|
|||
39 | .... |
|
|||
40 |
|
||||
41 | This help to type unicode character that do not have short latex aliases, and |
|
|||
42 | have long unicode names. for example ``Ͱ``, ``\GREEK CAPITAL LETTER HETA``. |
|
|||
43 |
|
||||
44 | This feature was contributed by Luciana Marques `ghpull:`#11583`. |
|
|||
45 |
|
||||
46 | Make audio normalization optional |
|
|||
47 | ================================= |
|
|||
48 |
|
||||
49 | Added 'normalize' argument to `IPython.display.Audio`. This argument applies |
|
|||
50 | when audio data is given as an array of samples. The default of `normalize=True` |
|
|||
51 | preserves prior behavior of normalizing the audio to the maximum possible range. |
|
|||
52 | Setting to `False` disables normalization. |
|
|||
53 |
|
||||
54 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. |
|
26 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. | |
55 |
|
27 | |||
56 |
|
28 | |||
57 | Backwards incompatible changes |
|
29 | Backwards incompatible changes | |
58 | ------------------------------ |
|
30 | ------------------------------ | |
59 |
|
31 | |||
60 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. No newline at end of file |
|
32 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. |
@@ -4,6 +4,19 b'' | |||||
4 |
|
4 | |||
5 | .. _whatsnew740: |
|
5 | .. _whatsnew740: | |
6 |
|
6 | |||
|
7 | IPython 7.5.0 | |||
|
8 | ============= | |||
|
9 | ||||
|
10 | IPython 7.5.0 consist mostly of bug-fixes, and documentation updates, with one | |||
|
11 | minor new feature. The `Audio` display element can now be assigned an element | |||
|
12 | id when displayed in browser. See :ghpull:`11670` | |||
|
13 | ||||
|
14 | The major outstanding bug fix correct a change of behavior that was introduce | |||
|
15 | in 7.4.0 where some cell magics would not be able to access or modify global | |||
|
16 | scope when using the ``@needs_local_scope`` decorator. This was typically | |||
|
17 | encountered with the ``%%time`` and ``%%timeit`` magics. See :ghissue:`11659` | |||
|
18 | and :ghpull:`11698`. | |||
|
19 | ||||
7 | IPython 7.4.0 |
|
20 | IPython 7.4.0 | |
8 | ============= |
|
21 | ============= | |
9 |
|
22 |
General Comments 0
You need to be logged in to leave comments.
Login now