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:
Administrator 2009-04-25 15:04:17 -07:00
parent e6a9e402ff
commit ff41bf1dc6

View File

@ -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']