Home | Trees | Index | Help |
---|
Package svnmailer :: Module util |
|
Classes | |
---|---|
TempFile |
Tempfile container class |
Function Summary | |
---|---|
popen2.Popen4 or _DummyPopen4
|
Returns a pipe object ( Popen4 or
_DummyPopen4 on win32) |
str or list
|
Return the revised command suitable for being exec'd |
file like object |
Returns the wrapped stream, which accepts unicode and strings |
list
|
Split a command string with respect to quotes and such |
Function Details |
---|
getPipe4(command)Returns a pipe object (Popen4 or
_DummyPopen4 on win32)
|
getSuitableCommandLine(command, _platform=None)Return the revised command suitable for being exec'd Currently this means, it's escaped and converted to a string only for Win32, because on this system the shell is called. For other systems the list is just returned.
|
getUnicodeWriter(fp, in_enc='utf-8', out_enc='utf-8', err=None)Returns the wrapped stream, which accepts unicode and strings
|
splitCommand(command)Split a command string with respect to quotes and such The command string consists of several tokens:
r'foo bar "baz"
"zo\"" "\\nk"' resolves to
['foo', 'bar', 'baz', 'zo"', r'\nk']
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.0 on Mon Feb 14 16:49:18 2005 | http://epydoc.sf.net |