(self, info)
| 844 | self.shell.push({top_name: top_module}) |
| 845 | |
| 846 | def pre_run_cell(self, info): |
| 847 | # Store the execution info for later use in post_execute_hook |
| 848 | self._last_execution_info = info |
| 849 | |
| 850 | if self._reloader.enabled: |
| 851 | try: |
| 852 | self._reloader.check() |
| 853 | except: |
| 854 | pass |
| 855 | |
| 856 | def post_execute_hook(self): |
| 857 | """Cache the modification times of any modules imported in this execution and track imports""" |