Show More
@@ -35,7 +35,7 b' from IPython.utils.py3compat import string_types' | |||||
35 | #----------------------------------------------------------------------------- |
|
35 | #----------------------------------------------------------------------------- | |
36 |
|
36 | |||
37 | def _safe_exists(path): |
|
37 | def _safe_exists(path): | |
38 |
""" |
|
38 | """Check path, but don't let exceptions raise""" | |
39 | try: |
|
39 | try: | |
40 | return os.path.exists(path) |
|
40 | return os.path.exists(path) | |
41 | except Exception: |
|
41 | except Exception: | |
@@ -60,7 +60,7 b' def display(*objs, **kwargs):' | |||||
60 | format data dict. If this is set *only* the format types included |
|
60 | format data dict. If this is set *only* the format types included | |
61 | in this list will be computed. |
|
61 | in this list will be computed. | |
62 | exclude : list or tuple, optional |
|
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 | data dict. If this is set all format types will be computed, |
|
64 | data dict. If this is set all format types will be computed, | |
65 | except for those included in this argument. |
|
65 | except for those included in this argument. | |
66 | """ |
|
66 | """ |
General Comments 0
You need to be logged in to leave comments.
Login now