---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-15-18dbdfa279da> in <module>()
----> 1 get_ipython().magic('run -d ipython_bug.py')
C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\interactiveshell.py in magic(self, arg_s)
2156 magic_name, _, magic_arg_s = arg_s.partition(' ')
2157 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
-> 2158 return self.run_line_magic(magic_name, magic_arg_s)
2159
2160 #-------------------------------------------------------------------------
C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\interactiveshell.py in run_line_magic(self, magic_name, line)
2077 kwargs['local_ns'] = sys._getframe(stack_depth).f_locals
2078 with self.builtin_trap:
-> 2079 result = fn(*args,**kwargs)
2080 return result
2081
<decorator-gen-58> in run(self, parameter_s, runner, file_finder)
C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\magic.py in <lambda>(f, *a, **k)
186 # but it's overkill for just that one bit of state.
187 def magic_deco(arg):
--> 188 call = lambda f, *a, **k: f(*a, **k)
189
190 if callable(arg):
C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\magics\execution.py in run(self, parameter_s, runner, file_finder)
713 opts.get('b', ['1'])[0], filename)
714 self._run_with_debugger(
--> 715 code, code_ns, filename, bp_line, bp_file)
716 else:
717 if 'm' in opts:
C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\magics\execution.py in _run_with_debugger(self, code, code_ns, filename, bp_line, bp_file)
816 maxtries = 10
817 bp_file = bp_file or filename
--> 818 checkline = deb.checkline(bp_file, bp_line)
819 if not checkline:
820 for bp in range(bp_line + 1, bp_line + maxtries + 1):
C:\ProgramData\Anaconda3\lib\pdb.py in checkline(self, filename, lineno)
749 # this method should be callable before starting debugging, so default
750 # to "no globals" if there is no current frame
--> 751 globs = self.curframe.f_globals if hasattr(self, 'curframe') else None
752 line = linecache.getline(filename, lineno, globs)
753 if not line:
AttributeError: 'NoneType' object has no attribute 'f_globals'