File tree 1 file changed +1
-8
lines changed
1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 64
64
import sys
65
65
import tempfile
66
66
67
- # To keep compatibility with various python versions
68
- try :
69
- from hashlib import md5
70
- except ImportError :
71
- from md5 import md5
72
-
73
67
# Third-party
74
68
import matplotlib
75
- import sphinx
76
69
from docutils .parsers .rst import directives
77
70
from docutils import nodes
78
71
from sphinx .util .compat import Directive
84
77
from IPython .core .profiledir import ProfileDir
85
78
from IPython .utils import io
86
79
87
- from pdb import set_trace
88
80
89
81
#-----------------------------------------------------------------------------
90
82
# Globals
@@ -205,6 +197,7 @@ def __init__(self):
205
197
config .InteractiveShell .autocall = False
206
198
config .InteractiveShell .autoindent = False
207
199
config .InteractiveShell .colors = 'NoColor'
200
+ config .InteractiveShell .cache_size = 0
208
201
209
202
# create a profile so instance history isn't saved
210
203
tmp_profile_dir = tempfile .mkdtemp (prefix = 'profile_' )
You can’t perform that action at this time.
0 commit comments