-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Fix runfile argument parsing error by using shlex #2784
Conversation
I'm fixing the tests in Appveyor. The failure is unrelated to your work. Please don't do more merges with master :-) |
I think I fixed the errors in AppVeyor, so please merge again with |
Sorry about that. I did another merge with |
@kapinga, don't worry about it, It's fine what you did. I just wanted to warn you so you wait me until I fixed our (irritating) AppVeyor issues :-) We're very new in this business of continuous integration, so we are still fixing things here and there :-) |
@kapinga, could you merge with master again so that your PR gets some fixes to Travis and Appveyor I pushed yersterday? Thanks :-) |
@ccordoba12 I merged with |
@kapinga, thanks a lot for your patience and for your contribution! Merging because this seems very useful ;-) |
Fix runfile argument parsing error by using shlex
Changed
sitecustomize.runfile()
to parse arguments usingshlex
instead ofstring.split()
. This allows users to run scripts with arguments containing escaped spaces in ipython.Fixes #2010