Show More
@@ -884,7 +884,7 b' class Image(DisplayObject):' | |||
|
884 | 884 | a URL, or a filename from which to load image data. |
|
885 | 885 | The result is always embedding image data for inline images. |
|
886 | 886 | |
|
887 | >>> Image('http://www.google.fr/images/srpr/logo3w.png') | |
|
887 | >>> Image('https://www.google.fr/images/srpr/logo3w.png') # doctest: +SKIP | |
|
888 | 888 | <IPython.core.display.Image object> |
|
889 | 889 | |
|
890 | 890 | >>> Image('/path/to/image.jpg') |
@@ -897,7 +897,7 b' class Image(DisplayObject):' | |||
|
897 | 897 | it only generates ``<img>`` tag with a link to the source. |
|
898 | 898 | This will not work in the qtconsole or offline. |
|
899 | 899 | |
|
900 | >>> Image(url='http://www.google.fr/images/srpr/logo3w.png') | |
|
900 | >>> Image(url='https://www.google.fr/images/srpr/logo3w.png') | |
|
901 | 901 | <IPython.core.display.Image object> |
|
902 | 902 | |
|
903 | 903 | """ |
@@ -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 |
http://www.python.org/peps/pep-0215 |
|
|
130 | https://www.python.org/dev/peps/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:: |
General Comments 0
You need to be logged in to leave comments.
Login now