-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python 2 and 3, after merge with current master (#437)
* Breaking up Makefile into three pieces: linux, osx, and windows * Ported code to work for both python 2 and 3 * assertItemsEqual was removed in python3. Also, we need to apply list to dict.keys() operations. * Set the locale to en_US.UTF-8, this resolves the encoding problems * pexepct.spawn needs to take an encoding argument in python 3 * Removed the shlex package, it is now distributed as part of the standard library. * sys.maxint has been removed in python 3 * Upgrading the argcomplete package and downloading it with pip. Removed out of date local copy of the code. * Updating the script that builds the dxpy pypi package * Removing unused (and hacky) python coverage report
- Loading branch information
Showing
64 changed files
with
1,299 additions
and
3,187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/sh | ||
IFS= | ||
export IFS | ||
|
||
COMP_WORDBREAKS= | ||
export COMP_WORDBREAKS | ||
|
||
COMP_TYPE= | ||
export COMP_TYPE | ||
|
||
COMP_LINE=${COMMAND_LINE} | ||
export COMP_LINE | ||
|
||
COMP_POINT=${#COMMAND_LINE} | ||
export COMP_POINT | ||
|
||
_ARGCOMPLETE=1 | ||
export _ARGCOMPLETE | ||
|
||
_ARGCOMPLETE_SHELL=tcsh | ||
export _ARGCOMPLETE_SHELL | ||
|
||
"$1" 8>&1 9>&2 1>/dev/null 2>/dev/null |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.