Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ls crashes when run on a UNC path or with non-ascii args #1006

Closed
jstenar opened this issue Nov 16, 2011 · 6 comments
Closed

ls crashes when run on a UNC path or with non-ascii args #1006

jstenar opened this issue Nov 16, 2011 · 6 comments
Milestone

Comments

@jstenar
Copy link
Member

jstenar commented Nov 16, 2011

ls crashes when run on a UNC path or with non-ascii args.

I believe it is because os.system requires a str and will try to convert using ascii.
See #1005 for a quick fix. @takluyver how should this be done in a python3 compatible way?

In [3]: ls åäö/
---------------------------------------------------------------------------
UnicodeEncodeError                        Traceback (most recent call last)
C:\python\bugreports\ipython\<ipython-input-3-af7427a4d827> in <module>()
----> 1 get_ipython().system(u"dir /on åäö/")

c:\python\external\ipython\IPython\core\interactiveshell.pyc in system_raw(self, cmd)
   2083                 if path is not None:
   2084                     cmd = '"pushd %s &&"%s' % (path, cmd)
-> 2085                 ec = os.system(cmd)
   2086         else:
   2087             ec = os.system(cmd)

UnicodeEncodeError: 'ascii' codec can't encode characters in position 8-10: ordinal not in range(128)
@minrk
Copy link
Member

minrk commented Nov 16, 2011

Does it really fail on a UNC path? Because I specifically tested that case, and it certainly does work. Does the UNC path have to be non-ascii as well for it to fail?

@jstenar
Copy link
Member Author

jstenar commented Nov 16, 2011

Min RK skrev 2011-11-16 23:03:

Does it really fail on a UNC path? Because I specifically tested that case, and it certainly does work. Does the UNC path have to be non-ascii as well for it to fail?


Reply to this email directly or view it on GitHub:
#1006 (comment)
I meant it fails if the unc path has non-ascii characters.

@fperez
Copy link
Member

fperez commented Nov 18, 2011

Question, now that #1005 got merged, should this issue be closed?

@jstenar
Copy link
Member Author

jstenar commented Nov 18, 2011

Yes I believe so. These things work for me now.

@minrk
Copy link
Member

minrk commented Nov 18, 2011

Thanks, closing.

@minrk minrk closed this as completed Nov 18, 2011
@fperez
Copy link
Member

fperez commented Nov 18, 2011

OK, closing then. You're the most likely to find any problems here, so feel free to reopen if you see any.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants