Show More
@@ -127,7 +127,7 b' class OSMagics(Magics):' | |||
|
127 | 127 | Aliases expand Python variables just like system calls using ! or !! |
|
128 | 128 | do: all expressions prefixed with '$' get expanded. For details of |
|
129 | 129 | the semantic rules, see PEP-215: |
|
130 |
https:// |
|
|
130 | https://peps.python.org/pep-0215/. This is the library used by | |
|
131 | 131 | IPython for variable expansion. If you want to access a true shell |
|
132 | 132 | variable, an extra $ is necessary to prevent its expansion by |
|
133 | 133 | IPython:: |
@@ -20,9 +20,6 b'' | |||
|
20 | 20 | .. _ipython: https://ipython.org |
|
21 | 21 | .. _`ipython manual`: https://ipython.org/documentation.html |
|
22 | 22 | .. _ipython_github: http://github.com/ipython/ipython/ |
|
23 | .. _ipython_github_repo: http://github.com/ipython/ipython/ | |
|
24 | .. _ipython_downloads: https://ipython.org/download.html | |
|
25 | .. _ipython_pypi: http://pypi.python.org/pypi/ipython | |
|
26 | 23 | .. _nbviewer: http://nbviewer.ipython.org |
|
27 | 24 | |
|
28 | 25 | .. _ZeroMQ: http://zeromq.org |
@@ -35,8 +32,7 b'' | |||
|
35 | 32 | .. _reST: http://docutils.sourceforge.net/rst.html |
|
36 | 33 | .. _docutils: http://docutils.sourceforge.net |
|
37 | 34 | .. _lyx: http://www.lyx.org |
|
38 |
.. _pep8: http |
|
|
39 | .. _numpy_coding_guide: https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt | |
|
35 | .. _pep8: https://peps.python.org/pep-0008/ | |
|
40 | 36 | |
|
41 | 37 | .. Licenses |
|
42 | 38 | .. _GPL: http://www.gnu.org/licenses/gpl.html |
@@ -277,7 +277,7 b' automatically upgrade to the latest version compatible with your system.' | |||
|
277 | 277 | |
|
278 | 278 | The ability to use only Python 3 on the code base of IPython brings a number |
|
279 | 279 | of advantages. Most of the newly written code make use of `optional function type |
|
280 |
annotation <https:// |
|
|
280 | annotation <https://peps.python.org/pep-0484/>`_ leading to clearer code | |
|
281 | 281 | and better documentation. |
|
282 | 282 | |
|
283 | 283 | The total size of the repository has also decreased by about 1500 lines (for the |
@@ -15,7 +15,7 b'' | |||
|
15 | 15 | "This is made difficult by the fact that Notebooks are not plain Python files,\n", |
|
16 | 16 | "and thus cannot be imported by the regular Python machinery.\n", |
|
17 | 17 | "\n", |
|
18 |
"Fortunately, Python provides some fairly sophisticated [hooks](http |
|
|
18 | "Fortunately, Python provides some fairly sophisticated [hooks](https://peps.python.org/pep-0302/) into the import machinery,\n", | |
|
19 | 19 | "so we can actually make IPython notebooks importable without much difficulty,\n", |
|
20 | 20 | "and only using public APIs." |
|
21 | 21 | ] |
General Comments 0
You need to be logged in to leave comments.
Login now