Amaury Forgeot d'Arc
ccd686a473
Merged revisions 74581 via svnmerge from
...
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74581 | amaury.forgeotdarc | 2009-08-29 20:14:40 +0200 (sam., 29 août 2009) | 3 lines
#6750 : TextIOWrapped could duplicate output when several threads write to it.
this affect text files opened with io.open(), and the print() function of py3k
........
2009-08-29 23:00:38 +00:00
Benjamin Peterson
680bf1afe8
move to a naming scheme with all lowercase and underscores
2009-06-12 02:07:12 +00:00
Benjamin Peterson
2cfca7977e
stop throwing out all errors when PyObject_GetAttr fails
2009-06-06 20:46:48 +00:00
Benjamin Peterson
0926ad1f05
give the C implementation of TextIOWrapper the errors property #6217
2009-06-06 18:02:12 +00:00
Antoine Pitrou
716c444edc
Issue #5761 : Add the name of the underlying file to the repr() of various IO objects.
2009-05-23 19:04:03 +00:00
Benjamin Peterson
81971eafbe
correctly handle invalid operations on streams (like writing on a non-writable one)
2009-05-14 22:01:31 +00:00
Antoine Pitrou
e450185b4a
Issue #5006 : Better handling of unicode byte-order marks (BOM) in the io library.
...
This means, for example, that opening an UTF-16 text file in
append mode doesn't add a BOM at the end of the file if the file isn't
empty.
2009-05-14 18:55:55 +00:00
Benjamin Peterson
d2e0c7955f
implement a detach() method for BufferedIOBase and TextIOBase #5883
2009-05-01 20:40:59 +00:00
Benjamin Peterson
1fea321502
use NULL for the ends of tables
2009-04-19 03:15:20 +00:00
Alexandre Vassalotti
8d8d630003
Issue 5682: Move _io module into its own subdirectory.
...
Reviewed by: Antoine Pitrou
2009-04-04 19:58:40 +00:00