##// END OF EJS Templates
Fixes #11068 : Cleanup extra logic that handle python <=3.3 in IPython/core/extensions.py
Subhendu Ranjan Mishra -
Show More
@@ -7,18 +7,13 b''
7 7 import os
8 8 import os.path
9 9 import sys
10 from importlib import import_module
10 from importlib import import_module, reload
11 11
12 12 from traitlets.config.configurable import Configurable
13 13 from IPython.utils.path import ensure_dir_exists, compress_user
14 14 from IPython.utils.decorators import undoc
15 15 from traitlets import Instance
16 16
17 try:
18 from importlib import reload
19 except ImportError :
20 ## deprecated since 3.4
21 from imp import reload
22 17
23 18 #-----------------------------------------------------------------------------
24 19 # Main class
General Comments 0
You need to be logged in to leave comments. Login now