On Tue, 30 May 2006, [EMAIL PROTECTED] wrote:

> Is it possible to disable the prints to stdout made by the functions
> in twill.commands? I tried
>
> import twill.commands
> twill.commands.OUT = file( '/dev/null' )

shouldn't that be

twill.commands.OUT = open('/dev/null', 'w')


(I mean the 'w' rather than the open vs. file, but you shouldn't really 
use file as a c'tor)


John

_______________________________________________
twill mailing list
[email protected]
http://lists.idyll.org/listinfo/twill

Reply via email to