##// END OF EJS Templates
Merge pull request #3450 from ipython/flatten...
Fernando Perez -
r11042:0c0c1a16 merge
parent child Browse files
Show More

The requested changes are too big and content was truncated. Show full diff

1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 160000
NO CONTENT: new file 160000
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: new file 100644
NO CONTENT: new file 100644
The requested commit or file is too big and content was truncated. Show full diff
@@ -5,7 +5,7 b' _build'
5 docs/man/*.gz
5 docs/man/*.gz
6 docs/source/api/generated
6 docs/source/api/generated
7 docs/gh-pages
7 docs/gh-pages
8 IPython/frontend/html/notebook/static/mathjax
8 IPython/html/notebook/static/mathjax
9 *.py[co]
9 *.py[co]
10 __pycache__
10 __pycache__
11 build
11 build
@@ -1,3 +1,3 b''
1 [submodule "components"]
1 [submodule "components"]
2 path = IPython/frontend/html/notebook/static/components
2 path = IPython/html/static/components
3 url = https://github.com/ipython/ipython-components.git
3 url = https://github.com/ipython/ipython-components.git
@@ -44,7 +44,7 b' from .config.loader import Config'
44 from .core.getipython import get_ipython
44 from .core.getipython import get_ipython
45 from .core import release
45 from .core import release
46 from .core.application import Application
46 from .core.application import Application
47 from .frontend.terminal.embed import embed
47 from .terminal.embed import embed
48
48
49 from .core.error import TryNext
49 from .core.error import TryNext
50 from .core.interactiveshell import InteractiveShell
50 from .core.interactiveshell import InteractiveShell
@@ -9,6 +9,6 b''
9 # The full license is in the file COPYING.txt, distributed with this software.
9 # The full license is in the file COPYING.txt, distributed with this software.
10 #-----------------------------------------------------------------------------
10 #-----------------------------------------------------------------------------
11
11
12 from IPython.frontend.terminal.ipapp import launch_new_instance
12 from IPython.terminal.ipapp import launch_new_instance
13
13
14 launch_new_instance()
14 launch_new_instance()
@@ -2,7 +2,7 b''
2
2
3 This is not a complete console app, as subprocess will not be able to receive
3 This is not a complete console app, as subprocess will not be able to receive
4 input, there is no real readline support, among other limitations. This is a
4 input, there is no real readline support, among other limitations. This is a
5 refactoring of what used to be the IPython/frontend/qt/console/qtconsoleapp.py
5 refactoring of what used to be the IPython/qt/console/qtconsoleapp.py
6
6
7 Authors:
7 Authors:
8
8
@@ -238,10 +238,10 b' class ProfileCreate(BaseIPythonApplication):'
238 def init_config_files(self):
238 def init_config_files(self):
239 super(ProfileCreate, self).init_config_files()
239 super(ProfileCreate, self).init_config_files()
240 # use local imports, since these classes may import from here
240 # use local imports, since these classes may import from here
241 from IPython.frontend.terminal.ipapp import TerminalIPythonApp
241 from IPython.terminal.ipapp import TerminalIPythonApp
242 apps = [TerminalIPythonApp]
242 apps = [TerminalIPythonApp]
243 try:
243 try:
244 from IPython.frontend.qt.console.qtconsoleapp import IPythonQtConsoleApp
244 from IPython.qt.console.qtconsoleapp import IPythonQtConsoleApp
245 except Exception:
245 except Exception:
246 # this should be ImportError, but under weird circumstances
246 # this should be ImportError, but under weird circumstances
247 # this might be an AttributeError, or possibly others
247 # this might be an AttributeError, or possibly others
@@ -250,7 +250,7 b' class ProfileCreate(BaseIPythonApplication):'
250 else:
250 else:
251 apps.append(IPythonQtConsoleApp)
251 apps.append(IPythonQtConsoleApp)
252 try:
252 try:
253 from IPython.frontend.html.notebook.notebookapp import NotebookApp
253 from IPython.html.notebookapp import NotebookApp
254 except ImportError:
254 except ImportError:
255 pass
255 pass
256 except Exception:
256 except Exception:
@@ -29,7 +29,7 b' def test_image_filename_defaults():'
29 embed=True)
29 embed=True)
30 nt.assert_raises(ValueError, display.Image)
30 nt.assert_raises(ValueError, display.Image)
31 nt.assert_raises(ValueError, display.Image, data='this is not an image', format='badformat', embed=True)
31 nt.assert_raises(ValueError, display.Image, data='this is not an image', format='badformat', embed=True)
32 imgfile = os.path.join(tpath, 'frontend/html/notebook/static/base/images/ipynblogo.png')
32 imgfile = os.path.join(tpath, 'html/static/base/images/ipynblogo.png')
33 img = display.Image(filename=imgfile)
33 img = display.Image(filename=imgfile)
34 nt.assert_equal('png', img.format)
34 nt.assert_equal('png', img.format)
35 nt.assert_is_not_none(img._repr_png_())
35 nt.assert_is_not_none(img._repr_png_())
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/README.md to IPython/html/README.md
NO CONTENT: file renamed from IPython/frontend/html/notebook/README.md to IPython/html/README.md
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/__init__.py to IPython/html/__init__.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/__init__.py to IPython/html/__init__.py
1 NO CONTENT: file renamed from IPython/deathrow/__init__.py to IPython/html/auth/__init__.py
NO CONTENT: file renamed from IPython/deathrow/__init__.py to IPython/html/auth/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/auth/login.py to IPython/html/auth/login.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/auth/login.py to IPython/html/auth/login.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/auth/logout.py to IPython/html/auth/logout.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/auth/logout.py to IPython/html/auth/logout.py
1 NO CONTENT: file renamed from IPython/deathrow/gui/__init__.py to IPython/html/base/__init__.py
NO CONTENT: file renamed from IPython/deathrow/gui/__init__.py to IPython/html/base/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/base/handlers.py to IPython/html/base/handlers.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/base/handlers.py to IPython/html/base/handlers.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/base/zmqhandlers.py to IPython/html/base/zmqhandlers.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/base/zmqhandlers.py to IPython/html/base/zmqhandlers.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/fabfile.py to IPython/html/fabfile.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/fabfile.py to IPython/html/fabfile.py
1 NO CONTENT: file renamed from IPython/deathrow/gui/wx/__init__.py to IPython/html/notebook/__init__.py
NO CONTENT: file renamed from IPython/deathrow/gui/wx/__init__.py to IPython/html/notebook/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/notebook/handlers.py to IPython/html/notebook/handlers.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/notebook/handlers.py to IPython/html/notebook/handlers.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/notebookapp.py to IPython/html/notebookapp.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/notebookapp.py to IPython/html/notebookapp.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/deathrow/oldfrontend/cocoa/__init__.py to IPython/html/services/__init__.py
NO CONTENT: file renamed from IPython/deathrow/oldfrontend/cocoa/__init__.py to IPython/html/services/__init__.py
1 NO CONTENT: file renamed from IPython/deathrow/oldfrontend/cocoa/tests/__init__.py to IPython/html/services/clusters/__init__.py
NO CONTENT: file renamed from IPython/deathrow/oldfrontend/cocoa/tests/__init__.py to IPython/html/services/clusters/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/clusters/clustermanager.py to IPython/html/services/clusters/clustermanager.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/clusters/clustermanager.py to IPython/html/services/clusters/clustermanager.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/clusters/handlers.py to IPython/html/services/clusters/handlers.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/clusters/handlers.py to IPython/html/services/clusters/handlers.py
1 NO CONTENT: file renamed from IPython/deathrow/oldfrontend/tests/__init__.py to IPython/html/services/kernels/__init__.py
NO CONTENT: file renamed from IPython/deathrow/oldfrontend/tests/__init__.py to IPython/html/services/kernels/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/kernels/handlers.py to IPython/html/services/kernels/handlers.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/kernels/handlers.py to IPython/html/services/kernels/handlers.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/kernels/kernelmanager.py to IPython/html/services/kernels/kernelmanager.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/kernels/kernelmanager.py to IPython/html/services/kernels/kernelmanager.py
1 NO CONTENT: file renamed from IPython/deathrow/oldfrontend/wx/__init__.py to IPython/html/services/notebooks/__init__.py
NO CONTENT: file renamed from IPython/deathrow/oldfrontend/wx/__init__.py to IPython/html/services/notebooks/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/azurenbmanager.py to IPython/html/services/notebooks/azurenbmanager.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/azurenbmanager.py to IPython/html/services/notebooks/azurenbmanager.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/filenbmanager.py to IPython/html/services/notebooks/filenbmanager.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/filenbmanager.py to IPython/html/services/notebooks/filenbmanager.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/handlers.py to IPython/html/services/notebooks/handlers.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/handlers.py to IPython/html/services/notebooks/handlers.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/nbmanager.py to IPython/html/services/notebooks/nbmanager.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/nbmanager.py to IPython/html/services/notebooks/nbmanager.py
1 NO CONTENT: file renamed from IPython/deathrow/tests/__init__.py to IPython/html/services/notebooks/tests/__init__.py
NO CONTENT: file renamed from IPython/deathrow/tests/__init__.py to IPython/html/services/notebooks/tests/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/tests/test_nbmanager.py to IPython/html/services/notebooks/tests/test_nbmanager.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/tests/test_nbmanager.py to IPython/html/services/notebooks/tests/test_nbmanager.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/css/override.css to IPython/html/static/auth/css/override.css
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/css/override.css to IPython/html/static/auth/css/override.css
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/js/loginmain.js to IPython/html/static/auth/js/loginmain.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/js/loginmain.js to IPython/html/static/auth/js/loginmain.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/js/loginwidget.js to IPython/html/static/auth/js/loginwidget.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/js/loginwidget.js to IPython/html/static/auth/js/loginwidget.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/js/logoutmain.js to IPython/html/static/auth/js/logoutmain.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/js/logoutmain.js to IPython/html/static/auth/js/logoutmain.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/less/login.less to IPython/html/static/auth/less/login.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/less/login.less to IPython/html/static/auth/less/login.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/less/logout.less to IPython/html/static/auth/less/logout.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/less/logout.less to IPython/html/static/auth/less/logout.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/less/style.less to IPython/html/static/auth/less/style.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/auth/less/style.less to IPython/html/static/auth/less/style.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/css/boilerplate.css to IPython/html/static/base/css/boilerplate.css
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/css/boilerplate.css to IPython/html/static/base/css/boilerplate.css
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/images/favicon.ico to IPython/html/static/base/images/favicon.ico
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/images/favicon.ico to IPython/html/static/base/images/favicon.ico
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/images/ipynblogo.png to IPython/html/static/base/images/ipynblogo.png
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/images/ipynblogo.png to IPython/html/static/base/images/ipynblogo.png
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/images/ipynblogo.svg to IPython/html/static/base/images/ipynblogo.svg
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/images/ipynblogo.svg to IPython/html/static/base/images/ipynblogo.svg
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/dialog.js to IPython/html/static/base/js/dialog.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/dialog.js to IPython/html/static/base/js/dialog.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/events.js to IPython/html/static/base/js/events.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/events.js to IPython/html/static/base/js/events.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/namespace.js to IPython/html/static/base/js/namespace.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/namespace.js to IPython/html/static/base/js/namespace.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/page.js to IPython/html/static/base/js/page.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/page.js to IPython/html/static/base/js/page.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/pagemain.js to IPython/html/static/base/js/pagemain.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/pagemain.js to IPython/html/static/base/js/pagemain.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/utils.js to IPython/html/static/base/js/utils.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/js/utils.js to IPython/html/static/base/js/utils.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/less/flexbox.less to IPython/html/static/base/less/flexbox.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/less/flexbox.less to IPython/html/static/base/less/flexbox.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/less/mixins.less to IPython/html/static/base/less/mixins.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/less/mixins.less to IPython/html/static/base/less/mixins.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/less/page.less to IPython/html/static/base/less/page.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/less/page.less to IPython/html/static/base/less/page.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/less/style.less to IPython/html/static/base/less/style.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/less/style.less to IPython/html/static/base/less/style.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/less/variables.less to IPython/html/static/base/less/variables.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/base/less/variables.less to IPython/html/static/base/less/variables.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/custom/custom.css to IPython/html/static/custom/custom.css
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/custom/custom.css to IPython/html/static/custom/custom.css
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/custom/custom.js to IPython/html/static/custom/custom.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/custom/custom.js to IPython/html/static/custom/custom.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/dateformat/date.format.js to IPython/html/static/dateformat/date.format.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/dateformat/date.format.js to IPython/html/static/dateformat/date.format.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/css/override.css to IPython/html/static/notebook/css/override.css
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/css/override.css to IPython/html/static/notebook/css/override.css
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/cell.js to IPython/html/static/notebook/js/cell.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/cell.js to IPython/html/static/notebook/js/cell.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/celltoolbar.js to IPython/html/static/notebook/js/celltoolbar.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/celltoolbar.js to IPython/html/static/notebook/js/celltoolbar.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/default.js to IPython/html/static/notebook/js/celltoolbarpresets/default.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/default.js to IPython/html/static/notebook/js/celltoolbarpresets/default.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/example.js to IPython/html/static/notebook/js/celltoolbarpresets/example.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/example.js to IPython/html/static/notebook/js/celltoolbarpresets/example.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/slideshow.js to IPython/html/static/notebook/js/celltoolbarpresets/slideshow.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/celltoolbarpresets/slideshow.js to IPython/html/static/notebook/js/celltoolbarpresets/slideshow.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/codecell.js to IPython/html/static/notebook/js/codecell.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/codecell.js to IPython/html/static/notebook/js/codecell.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/codemirror-ipython.js to IPython/html/static/notebook/js/codemirror-ipython.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/codemirror-ipython.js to IPython/html/static/notebook/js/codemirror-ipython.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/completer.js to IPython/html/static/notebook/js/completer.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/completer.js to IPython/html/static/notebook/js/completer.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/config.js to IPython/html/static/notebook/js/config.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/config.js to IPython/html/static/notebook/js/config.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/contexthint.js to IPython/html/static/notebook/js/contexthint.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/contexthint.js to IPython/html/static/notebook/js/contexthint.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/layoutmanager.js to IPython/html/static/notebook/js/layoutmanager.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/layoutmanager.js to IPython/html/static/notebook/js/layoutmanager.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/main.js to IPython/html/static/notebook/js/main.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/main.js to IPython/html/static/notebook/js/main.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/maintoolbar.js to IPython/html/static/notebook/js/maintoolbar.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/maintoolbar.js to IPython/html/static/notebook/js/maintoolbar.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/mathjaxutils.js to IPython/html/static/notebook/js/mathjaxutils.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/mathjaxutils.js to IPython/html/static/notebook/js/mathjaxutils.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/menubar.js to IPython/html/static/notebook/js/menubar.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/menubar.js to IPython/html/static/notebook/js/menubar.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/notebook.js to IPython/html/static/notebook/js/notebook.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/notebook.js to IPython/html/static/notebook/js/notebook.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/notificationarea.js to IPython/html/static/notebook/js/notificationarea.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/notificationarea.js to IPython/html/static/notebook/js/notificationarea.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/notificationwidget.js to IPython/html/static/notebook/js/notificationwidget.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/notificationwidget.js to IPython/html/static/notebook/js/notificationwidget.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/outputarea.js to IPython/html/static/notebook/js/outputarea.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/outputarea.js to IPython/html/static/notebook/js/outputarea.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/pager.js to IPython/html/static/notebook/js/pager.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/pager.js to IPython/html/static/notebook/js/pager.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/quickhelp.js to IPython/html/static/notebook/js/quickhelp.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/quickhelp.js to IPython/html/static/notebook/js/quickhelp.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/savewidget.js to IPython/html/static/notebook/js/savewidget.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/savewidget.js to IPython/html/static/notebook/js/savewidget.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/textcell.js to IPython/html/static/notebook/js/textcell.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/textcell.js to IPython/html/static/notebook/js/textcell.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/toolbar.js to IPython/html/static/notebook/js/toolbar.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/toolbar.js to IPython/html/static/notebook/js/toolbar.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/tooltip.js to IPython/html/static/notebook/js/tooltip.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/js/tooltip.js to IPython/html/static/notebook/js/tooltip.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/ansicolors.less to IPython/html/static/notebook/less/ansicolors.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/ansicolors.less to IPython/html/static/notebook/less/ansicolors.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/cell.less to IPython/html/static/notebook/less/cell.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/cell.less to IPython/html/static/notebook/less/cell.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/celltoolbar.less to IPython/html/static/notebook/less/celltoolbar.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/celltoolbar.less to IPython/html/static/notebook/less/celltoolbar.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/codecell.less to IPython/html/static/notebook/less/codecell.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/codecell.less to IPython/html/static/notebook/less/codecell.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/codemirror.less to IPython/html/static/notebook/less/codemirror.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/codemirror.less to IPython/html/static/notebook/less/codemirror.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/completer.less to IPython/html/static/notebook/less/completer.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/completer.less to IPython/html/static/notebook/less/completer.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/highlight.less to IPython/html/static/notebook/less/highlight.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/highlight.less to IPython/html/static/notebook/less/highlight.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/menubar.less to IPython/html/static/notebook/less/menubar.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/menubar.less to IPython/html/static/notebook/less/menubar.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/notebook.less to IPython/html/static/notebook/less/notebook.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/notebook.less to IPython/html/static/notebook/less/notebook.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/notificationarea.less to IPython/html/static/notebook/less/notificationarea.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/notificationarea.less to IPython/html/static/notebook/less/notificationarea.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/notificationwidget.less to IPython/html/static/notebook/less/notificationwidget.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/notificationwidget.less to IPython/html/static/notebook/less/notificationwidget.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/outputarea.less to IPython/html/static/notebook/less/outputarea.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/outputarea.less to IPython/html/static/notebook/less/outputarea.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/pager.less to IPython/html/static/notebook/less/pager.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/pager.less to IPython/html/static/notebook/less/pager.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/quickhelp.less to IPython/html/static/notebook/less/quickhelp.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/quickhelp.less to IPython/html/static/notebook/less/quickhelp.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/renderedhtml.less to IPython/html/static/notebook/less/renderedhtml.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/renderedhtml.less to IPython/html/static/notebook/less/renderedhtml.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/savewidget.less to IPython/html/static/notebook/less/savewidget.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/savewidget.less to IPython/html/static/notebook/less/savewidget.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/style.less to IPython/html/static/notebook/less/style.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/style.less to IPython/html/static/notebook/less/style.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/textcell.less to IPython/html/static/notebook/less/textcell.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/textcell.less to IPython/html/static/notebook/less/textcell.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/toolbar.less to IPython/html/static/notebook/less/toolbar.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/toolbar.less to IPython/html/static/notebook/less/toolbar.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/tooltip.less to IPython/html/static/notebook/less/tooltip.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/tooltip.less to IPython/html/static/notebook/less/tooltip.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/variables.less to IPython/html/static/notebook/less/variables.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/notebook/less/variables.less to IPython/html/static/notebook/less/variables.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/services/kernels/js/kernel.js to IPython/html/static/services/kernels/js/kernel.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/services/kernels/js/kernel.js to IPython/html/static/services/kernels/js/kernel.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/style/style.less to IPython/html/static/style/style.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/style/style.less to IPython/html/static/style/style.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/style/style.min.css to IPython/html/static/style/style.min.css
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/style/style.min.css to IPython/html/static/style/style.min.css
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/css/override.css to IPython/html/static/tree/css/override.css
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/css/override.css to IPython/html/static/tree/css/override.css
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/js/clusterlist.js to IPython/html/static/tree/js/clusterlist.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/js/clusterlist.js to IPython/html/static/tree/js/clusterlist.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/js/main.js to IPython/html/static/tree/js/main.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/js/main.js to IPython/html/static/tree/js/main.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/js/notebooklist.js to IPython/html/static/tree/js/notebooklist.js
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/js/notebooklist.js to IPython/html/static/tree/js/notebooklist.js
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/less/altuploadform.less to IPython/html/static/tree/less/altuploadform.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/less/altuploadform.less to IPython/html/static/tree/less/altuploadform.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/less/style.less to IPython/html/static/tree/less/style.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/less/style.less to IPython/html/static/tree/less/style.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/less/tree.less to IPython/html/static/tree/less/tree.less
NO CONTENT: file renamed from IPython/frontend/html/notebook/static/tree/less/tree.less to IPython/html/static/tree/less/tree.less
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/login.html to IPython/html/templates/login.html
NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/login.html to IPython/html/templates/login.html
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/logout.html to IPython/html/templates/logout.html
NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/logout.html to IPython/html/templates/logout.html
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/notebook.html to IPython/html/templates/notebook.html
NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/notebook.html to IPython/html/templates/notebook.html
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/page.html to IPython/html/templates/page.html
NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/page.html to IPython/html/templates/page.html
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/tree.html to IPython/html/templates/tree.html
NO CONTENT: file renamed from IPython/frontend/html/notebook/templates/tree.html to IPython/html/templates/tree.html
1 NO CONTENT: file renamed from IPython/frontend/__init__.py to IPython/html/tests/__init__.py
NO CONTENT: file renamed from IPython/frontend/__init__.py to IPython/html/tests/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/tests/test_hist.sqlite to IPython/html/tests/test_hist.sqlite
NO CONTENT: file renamed from IPython/frontend/html/notebook/tests/test_hist.sqlite to IPython/html/tests/test_hist.sqlite
1 NO CONTENT: file renamed from IPython/frontend/html/__init__.py to IPython/html/tree/__init__.py
NO CONTENT: file renamed from IPython/frontend/html/__init__.py to IPython/html/tree/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/tree/handlers.py to IPython/html/tree/handlers.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/tree/handlers.py to IPython/html/tree/handlers.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/utils.py to IPython/html/utils.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/utils.py to IPython/html/utils.py
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/auth/__init__.py to IPython/qt/__init__.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/auth/__init__.py to IPython/qt/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/qt/base_frontend_mixin.py to IPython/qt/base_frontend_mixin.py
NO CONTENT: file renamed from IPython/frontend/qt/base_frontend_mixin.py to IPython/qt/base_frontend_mixin.py
1 NO CONTENT: file renamed from IPython/frontend/qt/client.py to IPython/qt/client.py
NO CONTENT: file renamed from IPython/frontend/qt/client.py to IPython/qt/client.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/base/__init__.py to IPython/qt/console/__init__.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/base/__init__.py to IPython/qt/console/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/ansi_code_processor.py to IPython/qt/console/ansi_code_processor.py
NO CONTENT: file renamed from IPython/frontend/qt/console/ansi_code_processor.py to IPython/qt/console/ansi_code_processor.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/bracket_matcher.py to IPython/qt/console/bracket_matcher.py
NO CONTENT: file renamed from IPython/frontend/qt/console/bracket_matcher.py to IPython/qt/console/bracket_matcher.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/call_tip_widget.py to IPython/qt/console/call_tip_widget.py
NO CONTENT: file renamed from IPython/frontend/qt/console/call_tip_widget.py to IPython/qt/console/call_tip_widget.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/completion_html.py to IPython/qt/console/completion_html.py
NO CONTENT: file renamed from IPython/frontend/qt/console/completion_html.py to IPython/qt/console/completion_html.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/completion_lexer.py to IPython/qt/console/completion_lexer.py
NO CONTENT: file renamed from IPython/frontend/qt/console/completion_lexer.py to IPython/qt/console/completion_lexer.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/completion_plain.py to IPython/qt/console/completion_plain.py
NO CONTENT: file renamed from IPython/frontend/qt/console/completion_plain.py to IPython/qt/console/completion_plain.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/completion_widget.py to IPython/qt/console/completion_widget.py
NO CONTENT: file renamed from IPython/frontend/qt/console/completion_widget.py to IPython/qt/console/completion_widget.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/console_widget.py to IPython/qt/console/console_widget.py
NO CONTENT: file renamed from IPython/frontend/qt/console/console_widget.py to IPython/qt/console/console_widget.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/qt/console/frontend_widget.py to IPython/qt/console/frontend_widget.py
NO CONTENT: file renamed from IPython/frontend/qt/console/frontend_widget.py to IPython/qt/console/frontend_widget.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/qt/console/history_console_widget.py to IPython/qt/console/history_console_widget.py
NO CONTENT: file renamed from IPython/frontend/qt/console/history_console_widget.py to IPython/qt/console/history_console_widget.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/ipython_widget.py to IPython/qt/console/ipython_widget.py
NO CONTENT: file renamed from IPython/frontend/qt/console/ipython_widget.py to IPython/qt/console/ipython_widget.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/kill_ring.py to IPython/qt/console/kill_ring.py
NO CONTENT: file renamed from IPython/frontend/qt/console/kill_ring.py to IPython/qt/console/kill_ring.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/mainwindow.py to IPython/qt/console/mainwindow.py
NO CONTENT: file renamed from IPython/frontend/qt/console/mainwindow.py to IPython/qt/console/mainwindow.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/pygments_highlighter.py to IPython/qt/console/pygments_highlighter.py
NO CONTENT: file renamed from IPython/frontend/qt/console/pygments_highlighter.py to IPython/qt/console/pygments_highlighter.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/qtconsoleapp.py to IPython/qt/console/qtconsoleapp.py
NO CONTENT: file renamed from IPython/frontend/qt/console/qtconsoleapp.py to IPython/qt/console/qtconsoleapp.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/qt/console/resources/icon/IPythonConsole.svg to IPython/qt/console/resources/icon/IPythonConsole.svg
NO CONTENT: file renamed from IPython/frontend/qt/console/resources/icon/IPythonConsole.svg to IPython/qt/console/resources/icon/IPythonConsole.svg
1 NO CONTENT: file renamed from IPython/frontend/qt/console/rich_ipython_widget.py to IPython/qt/console/rich_ipython_widget.py
NO CONTENT: file renamed from IPython/frontend/qt/console/rich_ipython_widget.py to IPython/qt/console/rich_ipython_widget.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/qt/console/styles.py to IPython/qt/console/styles.py
NO CONTENT: file renamed from IPython/frontend/qt/console/styles.py to IPython/qt/console/styles.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/notebook/__init__.py to IPython/qt/console/tests/__init__.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/notebook/__init__.py to IPython/qt/console/tests/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/qt/console/tests/test_ansi_code_processor.py to IPython/qt/console/tests/test_ansi_code_processor.py
NO CONTENT: file renamed from IPython/frontend/qt/console/tests/test_ansi_code_processor.py to IPython/qt/console/tests/test_ansi_code_processor.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/qt/console/tests/test_completion_lexer.py to IPython/qt/console/tests/test_completion_lexer.py
NO CONTENT: file renamed from IPython/frontend/qt/console/tests/test_completion_lexer.py to IPython/qt/console/tests/test_completion_lexer.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/qt/console/tests/test_console_widget.py to IPython/qt/console/tests/test_console_widget.py
NO CONTENT: file renamed from IPython/frontend/qt/console/tests/test_console_widget.py to IPython/qt/console/tests/test_console_widget.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/qt/console/tests/test_kill_ring.py to IPython/qt/console/tests/test_kill_ring.py
NO CONTENT: file renamed from IPython/frontend/qt/console/tests/test_kill_ring.py to IPython/qt/console/tests/test_kill_ring.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/qt/inprocess.py to IPython/qt/inprocess.py
NO CONTENT: file renamed from IPython/frontend/qt/inprocess.py to IPython/qt/inprocess.py
1 NO CONTENT: file renamed from IPython/frontend/qt/kernel_mixins.py to IPython/qt/kernel_mixins.py
NO CONTENT: file renamed from IPython/frontend/qt/kernel_mixins.py to IPython/qt/kernel_mixins.py
1 NO CONTENT: file renamed from IPython/frontend/qt/manager.py to IPython/qt/manager.py
NO CONTENT: file renamed from IPython/frontend/qt/manager.py to IPython/qt/manager.py
1 NO CONTENT: file renamed from IPython/frontend/qt/rich_text.py to IPython/qt/rich_text.py
NO CONTENT: file renamed from IPython/frontend/qt/rich_text.py to IPython/qt/rich_text.py
1 NO CONTENT: file renamed from IPython/frontend/qt/svg.py to IPython/qt/svg.py
NO CONTENT: file renamed from IPython/frontend/qt/svg.py to IPython/qt/svg.py
1 NO CONTENT: file renamed from IPython/frontend/qt/util.py to IPython/qt/util.py
NO CONTENT: file renamed from IPython/frontend/qt/util.py to IPython/qt/util.py
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/__init__.py to IPython/terminal/__init__.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/__init__.py to IPython/terminal/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/clusters/__init__.py to IPython/terminal/console/__init__.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/clusters/__init__.py to IPython/terminal/console/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/terminal/console/app.py to IPython/terminal/console/app.py
NO CONTENT: file renamed from IPython/frontend/terminal/console/app.py to IPython/terminal/console/app.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/terminal/console/completer.py to IPython/terminal/console/completer.py
NO CONTENT: file renamed from IPython/frontend/terminal/console/completer.py to IPython/terminal/console/completer.py
1 NO CONTENT: file renamed from IPython/frontend/terminal/console/interactiveshell.py to IPython/terminal/console/interactiveshell.py
NO CONTENT: file renamed from IPython/frontend/terminal/console/interactiveshell.py to IPython/terminal/console/interactiveshell.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/kernels/__init__.py to IPython/terminal/console/tests/__init__.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/kernels/__init__.py to IPython/terminal/console/tests/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/terminal/console/tests/test_console.py to IPython/terminal/console/tests/test_console.py
NO CONTENT: file renamed from IPython/frontend/terminal/console/tests/test_console.py to IPython/terminal/console/tests/test_console.py
1 NO CONTENT: file renamed from IPython/frontend/terminal/console/tests/test_image_handler.py to IPython/terminal/console/tests/test_image_handler.py
NO CONTENT: file renamed from IPython/frontend/terminal/console/tests/test_image_handler.py to IPython/terminal/console/tests/test_image_handler.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/terminal/console/tests/writetofile.py to IPython/terminal/console/tests/writetofile.py
NO CONTENT: file renamed from IPython/frontend/terminal/console/tests/writetofile.py to IPython/terminal/console/tests/writetofile.py
1 NO CONTENT: file renamed from IPython/frontend/terminal/embed.py to IPython/terminal/embed.py
NO CONTENT: file renamed from IPython/frontend/terminal/embed.py to IPython/terminal/embed.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/terminal/interactiveshell.py to IPython/terminal/interactiveshell.py
NO CONTENT: file renamed from IPython/frontend/terminal/interactiveshell.py to IPython/terminal/interactiveshell.py
1 NO CONTENT: file renamed from IPython/frontend/terminal/ipapp.py to IPython/terminal/ipapp.py
NO CONTENT: file renamed from IPython/frontend/terminal/ipapp.py to IPython/terminal/ipapp.py
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/__init__.py to IPython/terminal/tests/__init__.py
NO CONTENT: file renamed from IPython/frontend/html/notebook/services/notebooks/__init__.py to IPython/terminal/tests/__init__.py
1 NO CONTENT: file renamed from IPython/frontend/terminal/tests/test_interactivshell.py to IPython/terminal/tests/test_interactivshell.py
NO CONTENT: file renamed from IPython/frontend/terminal/tests/test_interactivshell.py to IPython/terminal/tests/test_interactivshell.py
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (665 lines changed) Show them Hide them
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (518 lines changed) Show them Hide them
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (510 lines changed) Show them Hide them
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (942 lines changed) Show them Hide them
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (1767 lines changed) Show them Hide them
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (1126 lines changed) Show them Hide them
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (2328 lines changed) Show them Hide them
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (669 lines changed) Show them Hide them
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
This diff has been collapsed as it changes many lines, (560 lines changed) Show them Hide them
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now