Show More
@@ -35,7 +35,7 b' from IPython.utils.py3compat import string_types' | |||
|
35 | 35 | #----------------------------------------------------------------------------- |
|
36 | 36 | |
|
37 | 37 | def _safe_exists(path): |
|
38 |
""" |
|
|
38 | """Check path, but don't let exceptions raise""" | |
|
39 | 39 | try: |
|
40 | 40 | return os.path.exists(path) |
|
41 | 41 | except Exception: |
@@ -60,7 +60,7 b' def display(*objs, **kwargs):' | |||
|
60 | 60 | format data dict. If this is set *only* the format types included |
|
61 | 61 | in this list will be computed. |
|
62 | 62 | exclude : list or tuple, optional |
|
63 | A list of format type string (MIME types) to exclue in the format | |
|
63 | A list of format type strings (MIME types) to exclude in the format | |
|
64 | 64 | data dict. If this is set all format types will be computed, |
|
65 | 65 | except for those included in this argument. |
|
66 | 66 | """ |
@@ -410,7 +410,7 b' class Javascript(DisplayObject):' | |||
|
410 | 410 | string. |
|
411 | 411 | css: : list or str |
|
412 | 412 | A sequence of css files to load before running the source code. |
|
413 | The full URLs of the css files should be give. A single css URL | |
|
413 | The full URLs of the css files should be given. A single css URL | |
|
414 | 414 | can also be given as a string. |
|
415 | 415 | """ |
|
416 | 416 | if isinstance(lib, basestring): |
General Comments 0
You need to be logged in to leave comments.
Login now