Andrew M. Kuchling
4b81bc7fe6
#7706 : add include guards where they're missing; required for Windows CE
2010-02-22 23:12:00 +00:00
Antoine Pitrou
f3fa074703
- Issue #6939 : Fix file I/O objects in the `io` module to keep the original
...
file position when calling `truncate()`. It would previously change the
file position to the given argument, which goes against the tradition of
ftruncate() and other truncation APIs. Patch by Pascal Chambon.
2010-01-31 22:26:04 +00:00
Antoine Pitrou
e812d29b52
Issue #7545 : improve documentation of the `buffering` argument in io.open().
2009-12-19 21:01:10 +00:00
Benjamin Peterson
aef189939e
remove unused variable
2009-12-13 19:27:02 +00:00
Benjamin Peterson
ddd392cbb9
accept None as the same as having passed no argument in file types #7349
...
This is for consistency with imitation file objects like StringIO and BytesIO.
This commit also adds a few tests, where they were lacking for concerned
methods.
2009-12-13 19:19:07 +00:00
Mark Dickinson
889d96455a
Issue #7228 : Fix format mismatch when printing something of type off_t.
...
(Should silence some compiler warnings.)
2009-11-24 20:51:48 +00:00
Antoine Pitrou
e50efaad9f
Buffered I/O: optimize lock taking in the common non-contended case.
2009-11-01 11:58:22 +00:00
Mark Dickinson
3ddb52717f
Roll back ill-considered attempts to fix printf specifier mismatch for off_t.
...
The sensible solution seems to be to implement %lld for PyString_FromFormat(V)
and PyErr_Format. See issue #7228 .
2009-10-29 09:46:04 +00:00
Mark Dickinson
e8486931b6
Fix format specifier for MSVC
2009-10-28 07:47:32 +00:00
Mark Dickinson
791181b0ff
Replace long long with PY_LONG_LONG
2009-10-28 07:23:49 +00:00
Mark Dickinson
bf1039d98c
Silence gcc warnings when trying to print an off_t using "lld", on platforms
...
where off_t has type long (e.g., 64-bit Linux).
2009-10-27 21:48:20 +00:00
Mark Dickinson
e052b64def
Use correct conversion specifier and length modifier when printing an
...
integer of type off_t. Also, don't assume that long long is available.
2009-10-26 19:59:23 +00:00
Antoine Pitrou
5e9f6676ea
Fix compilation error in debug mode.
2009-10-24 12:41:27 +00:00
Antoine Pitrou
f7820c1626
Manual py3k backport: [svn r74316] Issue #5449 : Fix io.BytesIO to not accept arbitrary keywords
2009-10-24 12:28:22 +00:00
Antoine Pitrou
fa94e80f3b
Manual py3k backport: [svn r74158] Issue #6218 : Make io.BytesIO and io.StringIO picklable.
2009-10-24 12:23:18 +00:00
Antoine Pitrou
f98a267be3
Manual py3k backport: [svn r74155] Issue #6242 : Fix deallocator of io.StringIO and io.BytesIO
2009-10-24 11:59:41 +00:00
Amaury Forgeot d'Arc
3de4647022
Fix compilation warning on Windows, where size_t is 32bit but file offsets are 64bit.
2009-10-05 20:18:05 +00:00
Antoine Pitrou
2a46658bee
Issue #6236 , #6348 : Fix various failures in the io module under AIX
...
and other platforms, when using a non-gcc compiler. Patch by egreen.
In addition, I made explicit the signedness of all bitfields in the
IO library.
2009-09-21 21:17:48 +00:00
Amaury Forgeot d'Arc
fff896b309
#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 18:14:40 +00:00
Antoine Pitrou
20e1f932fa
Issue #6629 : Fix a data corruption issue in the new `io` package, which could
...
occur when writing to a BufferedRandom object (e.g. a file opened in "rb+" or
"wb+" mode) after having buffered a certain amount of data for reading. This
bug was not present in the pure Python implementation.
Yes, this is a serious issue.
2009-08-06 20:18:29 +00:00
Hirokazu Yamamoto
a3c5609079
Issue #4856 : Remove checks for win NT.
2009-06-28 10:23:00 +00:00
Benjamin Peterson
9f7baec574
backport r73430
2009-06-14 22:36:48 +00:00
Antoine Pitrou
1969059327
Issue #6215 : backport the 3.1 io lib
2009-06-12 20:14:08 +00:00