##// END OF EJS Templates
Issue #11068 : Cleanup extra logic that handle python <=3.3 in IPython/utils/openpy.py
Subhendu Ranjan Mishra -
Show More
@@ -114,8 +114,4 b' def _list_readline(x):'
114 return readline
114 return readline
115
115
116 # Code for going between .py files and cached .pyc files ----------------------
116 # Code for going between .py files and cached .pyc files ----------------------
117 try:
117 from importlib.util import source_from_cache, cache_from_source
118 from importlib.util import source_from_cache, cache_from_source
119 except ImportError :
120 ## deprecated since 3.4
121 from imp import source_from_cache, cache_from_source
General Comments 0
You need to be logged in to leave comments. Login now