##// END OF EJS Templates
refactor to improve cell switching in edit mode...
refactor to improve cell switching in edit mode This code was repeated in both CodeCell and TextCell, both of which are extensions of Cell, so this just unifies the logic in Cell. TextCell had logic here to check if the cell was rendered or not, but I don't believe it is possible to end up triggering such a code path. (Should that be required, I can always just add back these methods to TextCell, performing the .rendered==True check, and calling the Cell prior to this, code mirror at_top would only return true on if the cursor was at the first character of the top line. Now, pressing up arrow on any character on the top line will take you to the cell above. The same applies for the bottom line. Pressing down arrow would only go to the next cell if the cursor was at a location *after* the last character (something that is only possible to achieve in vim mode if the last line is empty, for example). Now, down arrow on any character of the last line will go to the next cell.

File last commit:

r13348:e6afea51
r15754:d60e793e
Show More
refbug.py
48 lines | 1.5 KiB | text/x-python | PythonLexer
Fernando Perez
Work again on bug 269966....
r1916 """Minimal script to reproduce our nasty reference counting bug.
Thomas Kluyver
Replace links to launchpad bugs in comments/docstrings with equivalent github links.
r3917 The problem is related to https://github.com/ipython/ipython/issues/141
Fernando Perez
Work again on bug 269966....
r1916
Fernando Perez
Small formatting fixes to address Jorgen's last code review.
r1922 The original fix for that appeared to work, but John D. Hunter found a
matplotlib example which, when run twice in a row, would break. The problem
were references held by open figures to internals of Tkinter.
Fernando Perez
Work again on bug 269966....
r1916
Fernando Perez
Small formatting fixes to address Jorgen's last code review.
r1922 This code reproduces the problem that John saw, without matplotlib.
This script is meant to be called by other parts of the test suite that call it
Thomas Kluyver
Replace links to launchpad bugs in comments/docstrings with equivalent github links.
r3917 via %run as if it were executed interactively by the user. As of 2011-05-29,
test_run.py calls it.
Fernando Perez
Work again on bug 269966....
r1916 """
Thomas Kluyver
Convert print statements to print function calls...
r13348 from __future__ import print_function
Fernando Perez
Work again on bug 269966....
r1916
#-----------------------------------------------------------------------------
# Module imports
#-----------------------------------------------------------------------------
import sys
MinRK
don't use deprecated ipapi.get...
r10581 from IPython import get_ipython
Fernando Perez
Work again on bug 269966....
r1916
#-----------------------------------------------------------------------------
# Globals
#-----------------------------------------------------------------------------
Brian Granger
Fixing InteractiveShell creation
r2746 # This needs to be here because nose and other test runners will import
# this module. Importing this module has potential side effects that we
# want to prevent.
if __name__ == '__main__':
Fernando Perez
Work again on bug 269966....
r1916
MinRK
don't use deprecated ipapi.get...
r10581 ip = get_ipython()
Fernando Perez
Work again on bug 269966....
r1916
Brian Granger
Fixing InteractiveShell creation
r2746 if not '_refbug_cache' in ip.user_ns:
ip.user_ns['_refbug_cache'] = []
Fernando Perez
Work again on bug 269966....
r1916
Brian Granger
Fixing InteractiveShell creation
r2746 aglobal = 'Hello'
def f():
return aglobal
cache = ip.user_ns['_refbug_cache']
cache.append(f)
def call_f():
for func in cache:
Thomas Kluyver
Convert print statements to print function calls...
r13348 print('lowercased:',func().lower())