summaryrefslogtreecommitdiffstats
path: root/Modules/_io/textio.c
Commit message (Expand)AuthorAgeFilesLines
* Additional fix for Issue #12268: The io module file object writelines() metho...Gregory P. Smith2013-02-011-2/+5
* #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka.Ezio Melotti2012-09-181-1/+1
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-1/+4
* open() / TextIOWrapper doc: make it explicit than newline='\n' doesn'tVictor Stinner2012-08-031-3/+3
* Make TextIOWrapper's documentation clearer by copying the newline argument's ...Antoine Pitrou2012-08-031-9/+16
* Fixes issue #12268: File readline, readlines and read() or readall() methodsGregory P. Smith2012-06-241-2/+14
* Fix typo in “seperat{or,ion}”Éric Araujo2012-02-261-1/+1
* Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (withoutAntoine Pitrou2011-07-231-6/+14
* Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIO...Antoine Pitrou2011-07-131-1/+1
* Issue #10872: The repr() of TextIOWrapper objects now includes the modeAntoine Pitrou2011-01-091-7/+34
* Issue #10180: Pickling file objects is now explicitly forbidden, sinceAntoine Pitrou2010-11-051-0/+9
* Issue #10093: ResourceWarnings are now issued when files and sockets areAntoine Pitrou2010-10-291-0/+9
* Issue #9293: I/O streams now raise `io.UnsupportedOperation` when anAntoine Pitrou2010-09-051-17/+9
* Issue #6697: Check that _PyUnicode_AsString() result is not NULL in textio.cVictor Stinner2010-05-191-2/+7
* Merged revisions 80720 via svnmerge fromAntoine Pitrou2010-05-031-7/+21
* Merged revisions 77890 via svnmerge fromAntoine Pitrou2010-01-311-9/+1
* Merged revisions 76805 via svnmerge fromBenjamin Peterson2009-12-131-1/+1
* Merged revisions 75007 via svnmerge fromAntoine Pitrou2009-09-211-3/+3
* Merged revisions 74581 via svnmerge fromAmaury Forgeot d'Arc2009-08-291-4/+9
* move to a naming scheme with all lowercase and underscoresBenjamin Peterson2009-06-121-172/+169
* stop throwing out all errors when PyObject_GetAttr failsBenjamin Peterson2009-06-061-6/+19
* give the C implementation of TextIOWrapper the errors property #6217Benjamin Peterson2009-06-061-0/+21
* Issue #5761: Add the name of the underlying file to the repr() of various IO ...Antoine Pitrou2009-05-231-2/+19
* correctly handle invalid operations on streams (like writing on a non-writabl...Benjamin Peterson2009-05-141-1/+6
* Issue #5006: Better handling of unicode byte-order marks (BOM) in the io libr...Antoine Pitrou2009-05-141-22/+104
* implement a detach() method for BufferedIOBase and TextIOBase #5883Benjamin Peterson2009-05-011-4/+47
* use NULL for the ends of tablesBenjamin Peterson2009-04-191-4/+4
* Issue 5682: Move _io module into its own subdirectory.Alexandre Vassalotti2009-04-041-0/+2420