New modules mimetools and rfc822.

Minor, minor changes to commands.py and sndhdr.py.
This commit is contained in:
Guido van Rossum 1992-07-13 14:28:59 +00:00
parent eb23155a8e
commit 01ca336ed1
3 changed files with 325 additions and 1 deletions

View file

@ -49,7 +49,7 @@ def mkarg(x):
return ' \'' + x + '\''
s = ' "'
for c in x:
if c in '\\$"':
if c in '\\$"`':
s = s + '\\'
s = s + c
s = s + '"'