From: Guido van Rossum Date: Wed, 18 Jul 2007 16:59:11 +0000 (+0000) Subject: Do the right thing for CYGWIN. X-Git-Tag: v3.0a1~620 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ed317d790023e766e6992020d268e0e9fc35dfc;p=python Do the right thing for CYGWIN. --- diff --git a/runtests.sh b/runtests.sh index 2a6c0ba47f..837aab2ee1 100755 --- a/runtests.sh +++ b/runtests.sh @@ -13,6 +13,7 @@ unset PYTHONPATH # Choose the Python binary. case `uname` in Darwin) PYTHON=./python.exe;; +CYGWIN*) PYTHON=./python.exe;; *) PYTHON=./python;; esac