From: Guido van Rossum Date: Wed, 4 Jan 1995 19:20:00 +0000 (+0000) Subject: Added clarifying comment X-Git-Tag: v1.2b1~76 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e1130a49cdf9626dfbdd39bc080eb2d8089de420;p=thirdparty%2FPython%2Fcpython.git Added clarifying comment --- diff --git a/Lib/commands.py b/Lib/commands.py index 428a830764f3..6471a8db594c 100644 --- a/Lib/commands.py +++ b/Lib/commands.py @@ -40,6 +40,8 @@ def mk2arg(head, x): # Make a shell command argument from a string. +# Return a string beginning with a space followed by a shell-quoted +# version of the argument. # Two strategies: enclose in single quotes if it contains none; # otherwise, enclose in double quotes and prefix quotable characters # with backslash.