Tim Roberts a écrit :
> rm <[EMAIL PROTECTED]> wrote:
(snip)
> You also have a couple of instances of:
> print("Error Squeezing %s...")
>
> The parentheses serve no purpose here, and are unidiomatic.And FWIW, error messages should go to sys.stderr, not to sys.stdout which is for normal program ouputs. => # assert you imported sys before, of course print >> sys.stderr, "Error yadda yadda %s " % anything -- http://mail.python.org/mailman/listinfo/python-list
