This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author afoo
Recipients afoo, georg.brandl
Date 2008-06-11.23:01:14
SpamBayes Score 0.017422058
Marked as misclassified No
Message-id <1213225286.96.0.994890895881.issue3085@psf.upfronthosting.co.za>
In-reply-to
Content
the 'from' examples contain non-keyword args after keyword args:

pipe = os.popen(cmd, mode='r', bufsize)

should be

pipe = os.popen(cmd, 'r', bufsize)

and

pipe = os.popen(cmd, mode='w', bufsize)

should be

pipe = os.popen(cmd, 'w', bufsize)
History
Date User Action Args
2008-06-11 23:01:28afoosetspambayes_score: 0.0174221 -> 0.017422058
recipients: + afoo, georg.brandl
2008-06-11 23:01:27afoosetspambayes_score: 0.0174221 -> 0.0174221
messageid: <1213225286.96.0.994890895881.issue3085@psf.upfronthosting.co.za>
2008-06-11 23:01:23afoolinkissue3085 messages
2008-06-11 23:01:18afoocreate