[Python-checkins] r59684 - in sandbox/branches/setuptools-0.6: EasyInstall.txt launcher.c setuptools/gui.exe setuptools/tests/win_script_wrapper.txt

phillip.eby python-checkins at python.org
Fri Jan 4 00:48:02 CET 2008


Author: phillip.eby
Date: Fri Jan  4 00:48:02 2008
New Revision: 59684

Modified:
   sandbox/branches/setuptools-0.6/EasyInstall.txt
   sandbox/branches/setuptools-0.6/launcher.c
   sandbox/branches/setuptools-0.6/setuptools/gui.exe
   sandbox/branches/setuptools-0.6/setuptools/tests/win_script_wrapper.txt
Log:
Backport gui.exe launcher fix.


Modified: sandbox/branches/setuptools-0.6/EasyInstall.txt
==============================================================================
--- sandbox/branches/setuptools-0.6/EasyInstall.txt	(original)
+++ sandbox/branches/setuptools-0.6/EasyInstall.txt	Fri Jan  4 00:48:02 2008
@@ -1237,6 +1237,8 @@
  * Prevent ``--help-commands`` and other junk from showing under Python 2.5
    when running ``easy_install --help``.
 
+ * Fixed GUI scripts sometimes not executing on Windows
+
 0.6c7
  * ``ftp:`` download URLs now work correctly.
 

Modified: sandbox/branches/setuptools-0.6/launcher.c
==============================================================================
--- sandbox/branches/setuptools-0.6/launcher.c	(original)
+++ sandbox/branches/setuptools-0.6/launcher.c	Fri Jan  4 00:48:02 2008
@@ -231,8 +231,8 @@
 
     if (is_gui) {
         /* Use exec, we don't need to wait for the GUI to finish */
-        execv(python, (const char * const *)(newargs));
-        return fail("Could not exec %s", python);   /* shouldn't get here! */
+        execv(ptr, (const char * const *)(newargs));
+        return fail("Could not exec %s", ptr);   /* shouldn't get here! */
     }
 
     /* We *do* need to wait for a CLI to finish, so use spawn */

Modified: sandbox/branches/setuptools-0.6/setuptools/gui.exe
==============================================================================
Binary files. No diff available.

Modified: sandbox/branches/setuptools-0.6/setuptools/tests/win_script_wrapper.txt
==============================================================================
--- sandbox/branches/setuptools-0.6/setuptools/tests/win_script_wrapper.txt	(original)
+++ sandbox/branches/setuptools-0.6/setuptools/tests/win_script_wrapper.txt	Fri Jan  4 00:48:02 2008
@@ -5,8 +5,7 @@
 executed like regular windows programs.  There are 2 wrappers, once
 for command-line programs, cli.exe, and one for graphica programs,
 gui.exe.  These programs are almost identical, function pretty much
-the same way, and are generated from the same source file.  In this
-document, we'll demonstrate use of the command-line program only.  The
+the same way, and are generated from the same source file.  The
 wrapper programs are used by copying them to the directory containing
 the script they are to wrap and with the same name as the script they
 are to wrap.  In the rest of this document, we'll give an example that
@@ -68,13 +67,14 @@
 - One or more backslashes preceding double quotes quotes need to be
   escaped by preceding each of them them with back slashes.
 
+
 Specifying Python Command-line Options
 --------------------------------------
 
 You can specify a single argument on the '#!' line.  This can be used
 to specify Python options like -O, to run in optimized mode or -i
 to start the interactive interpreter.  You can combine multiple
-options as usual. For example, to run in optimized mode and 
+options as usual. For example, to run in optimized mode and
 enter the interpreter after running the script, you could use -Oi:
 
     >>> open(os.path.join(sample_directory, 'foo-script.py'), 'w').write(
@@ -97,8 +97,41 @@
     ''
     ---
 
+Testing the GUI Version
+-----------------------
+
+Now let's test the GUI version with the simple scipt, bar-script.py:
+
+    >>> import os, sys, tempfile
+    >>> from setuptools.command.easy_install import nt_quote_arg
+    >>> sample_directory = tempfile.mkdtemp()
+    >>> open(os.path.join(sample_directory, 'bar-script.pyw'), 'w').write(
+    ... """#!%(python_exe)s
+    ... import sys
+    ... open(sys.argv[1], 'wb').write(repr(sys.argv[2]))
+    ... """ % dict(python_exe=nt_quote_arg(sys.executable)))
+
+We'll also copy gui.exe to the sample-directory with the name bar.exe:
+
+    >>> import pkg_resources
+    >>> open(os.path.join(sample_directory, 'bar.exe'), 'wb').write(
+    ...     pkg_resources.resource_string('setuptools', 'gui.exe')
+    ...     )
+
+Finally, we'll run the script and check the result:
+
+    >>> import os
+    >>> input, output = os.popen4('"'+nt_quote_arg(os.path.join(sample_directory, 'bar.exe'))
+    ...               + r' "%s" "Test Argument"' % os.path.join(sample_directory, 'test_output.txt'))
+    >>> input.close()
+    >>> print output.read()
+    <BLANKLINE>
+    >>> print open(os.path.join(sample_directory, 'test_output.txt'), 'rb').read()
+    'Test Argument'
+
 
 We're done with the sample_directory:
 
     >>> import shutil
     >>> shutil.rmtree(sample_directory)
+


More information about the Python-checkins mailing list