##// END OF EJS Templates
Try to avoid network connection during tests....
Matthias Bussonnier -
Show More
@@ -884,7 +884,7 b' class Image(DisplayObject):'
884 a URL, or a filename from which to load image data.
884 a URL, or a filename from which to load image data.
885 The result is always embedding image data for inline images.
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 <IPython.core.display.Image object>
888 <IPython.core.display.Image object>
889
889
890 >>> Image('/path/to/image.jpg')
890 >>> Image('/path/to/image.jpg')
@@ -897,7 +897,7 b' class Image(DisplayObject):'
897 it only generates ``<img>`` tag with a link to the source.
897 it only generates ``<img>`` tag with a link to the source.
898 This will not work in the qtconsole or offline.
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 <IPython.core.display.Image object>
901 <IPython.core.display.Image object>
902
902
903 """
903 """
@@ -127,7 +127,7 b' class OSMagics(Magics):'
127 Aliases expand Python variables just like system calls using ! or !!
127 Aliases expand Python variables just like system calls using ! or !!
128 do: all expressions prefixed with '$' get expanded. For details of
128 do: all expressions prefixed with '$' get expanded. For details of
129 the semantic rules, see PEP-215:
129 the semantic rules, see PEP-215:
130 http://www.python.org/peps/pep-0215.html. This is the library used by
130 https://www.python.org/dev/peps/pep-0215/. This is the library used by
131 IPython for variable expansion. If you want to access a true shell
131 IPython for variable expansion. If you want to access a true shell
132 variable, an extra $ is necessary to prevent its expansion by
132 variable, an extra $ is necessary to prevent its expansion by
133 IPython::
133 IPython::
General Comments 0
You need to be logged in to leave comments. Login now