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 vstinner
Recipients Alexander.Steppke, r.david.murray, vstinner
Date 2011-10-14.15:55:20
SpamBayes Score 3.5690692e-07
Marked as misclassified No
Message-id <4E985B63.4050008@haypocalc.com>
In-reply-to <1318595850.54.0.168885134496.issue13171@psf.upfronthosting.co.za>
Content
Le 14/10/2011 14:37, Alexander Steppke a écrit :
> "When a file is opened with update mode ('+' as the second or third character in the above list of mode argument values),

You can just say " '+' in the file mode ".

> the fflush function or to a file positioning function (fseek, fsetpos, or rewind),

You should translate these names into Python method names:
  fflush -> file.flush()
  fseek/fsetpos -> file.seek()
  rewind -> (not exposed in Python)
History
Date User Action Args
2011-10-14 15:55:20vstinnersetrecipients: + vstinner, r.david.murray, Alexander.Steppke
2011-10-14 15:55:20vstinnerlinkissue13171 messages
2011-10-14 15:55:20vstinnercreate