mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-15 04:00:34 +08:00
Added platutils.get_long_path_name to expand paths with "~" on win32.
This might be needed to fix ticket https://bugs.launchpad.net/bugs/366353 But, there are still problems with Magic.parse_options
This commit is contained in:
parent
e6a9e402ff
commit
ff41bf1dc6
@ -213,6 +213,13 @@ def make_runners():
|
||||
if have_pexpect:
|
||||
top_mod.append('irunner.py')
|
||||
|
||||
if sys.platform == 'win32':
|
||||
top_mod.append('platutils_win32.py')
|
||||
elif os.name == 'posix':
|
||||
top_mod.append('platutils_posix.py')
|
||||
else:
|
||||
top_mod.append('platutils_dummy.py')
|
||||
|
||||
# These are tested by nose, so skip IPython.kernel
|
||||
top_pack = ['config','Extensions','frontend',
|
||||
'testing','tests','tools','UserConfig']
|
||||
|
Loading…
Reference in New Issue
Block a user