[Python-3000-checkins] r56440 - python/branches/py3k-struni/runtests.sh

guido.van.rossum python-3000-checkins at python.org
Wed Jul 18 18:59:12 CEST 2007


Author: guido.van.rossum
Date: Wed Jul 18 18:59:11 2007
New Revision: 56440

Modified:
   python/branches/py3k-struni/runtests.sh
Log:
Do the right thing for CYGWIN.


Modified: python/branches/py3k-struni/runtests.sh
==============================================================================
--- python/branches/py3k-struni/runtests.sh	(original)
+++ python/branches/py3k-struni/runtests.sh	Wed Jul 18 18:59:11 2007
@@ -13,6 +13,7 @@
 # Choose the Python binary.
 case `uname` in
 Darwin) PYTHON=./python.exe;;
+CYGWIN*) PYTHON=./python.exe;;
 *)      PYTHON=./python;;
 esac
 


More information about the Python-3000-checkins mailing list