index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_io
/
fileio.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods.
Berker Peksag
2014-09-24
1
-3/+5
|
\
|
*
Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods.
Berker Peksag
2014-09-24
1
-3/+5
*
|
Issue #22215: Now ValueError is raised instead of TypeError when str or bytes
Serhiy Storchaka
2014-09-06
1
-1/+1
*
|
(Merge 3.4) Issue #21090: io.FileIO.readall() does not ignore I/O errors
Victor Stinner
2014-07-02
1
-2/+2
|
\
\
|
|
/
|
*
Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before,
Victor Stinner
2014-07-02
1
-2/+2
*
|
Issue #21679: Prevent extraneous fstat() calls during open(). Patch by Bohus...
Antoine Pitrou
2014-06-30
1
-21/+25
|
/
*
Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown.
Antoine Pitrou
2013-12-21
1
-2/+4
*
Issue #19512: fileio_init() reuses PyId_name identifier instead of "name"
Victor Stinner
2013-11-06
1
-2/+3
*
Issue #18876: The FileIO.mode attribute now better reflects the actual mode u...
Antoine Pitrou
2013-09-04
1
-9/+13
|
\
|
*
Issue #18876: The FileIO.mode attribute now better reflects the actual mode u...
Antoine Pitrou
2013-09-04
1
-10/+13
*
|
Issue #18571: Implementation of the PEP 446: file descriptors and file handles
Victor Stinner
2013-08-27
1
-3/+29
*
|
Issue #18112: PEP 442 implementation (safe object finalization).
Antoine Pitrou
2013-07-30
1
-5/+19
*
|
Issue #18408: Fix fileio_read() on _PyBytes_Resize() failure
Victor Stinner
2013-07-16
1
-1/+1
*
|
If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.
Victor Stinner
2013-06-24
1
-7/+7
*
|
Check for correct macro, code uses S_ISDIR().
Christian Heimes
2013-06-23
1
-1/+1
|
\
\
|
|
/
|
*
Check for correct macro, code uses S_ISDIR().
Christian Heimes
2013-06-23
1
-1/+1
|
*
Issue #15989: Fix several occurrences of integer overflow
Serhiy Storchaka
2013-01-19
1
-2/+2
|
|
\
|
|
*
Issue #15989: Fix several occurrences of integer overflow
Serhiy Storchaka
2013-01-19
1
-1/+1
*
|
|
FileIO.readall(): remove trailing space from an exception message
Victor Stinner
2013-05-17
1
-1/+1
*
|
|
Issue #15758: Fix FileIO.readall() so it no longer has O(n**2) complexity.
Richard Oudkerk
2013-05-17
1
-66/+52
*
|
|
Issue #15989: Fix several occurrences of integer overflow
Serhiy Storchaka
2013-01-14
1
-2/+2
*
|
|
(Merge 3.3) Issue #16367: Fix FileIO.readall() on Windows for files larger th...
Victor Stinner
2013-01-03
1
-2/+11
|
\
\
\
|
|
/
/
|
*
|
(Merge 3.2) Issue #16367: Fix FileIO.readall() on Windows for files larger th...
Victor Stinner
2013-01-03
1
-2/+11
|
|
\
\
|
|
|
/
|
|
*
Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB
Victor Stinner
2013-01-03
1
-2/+11
*
|
|
Issue #15478: Raising an OSError doesn't decode or encode the filename anymore
Victor Stinner
2012-10-30
1
-6/+1
|
/
/
*
|
Issue #15247: FileIO now raises an error when given a file descriptor pointin...
Antoine Pitrou
2012-07-06
1
-12/+5
|
\
\
|
|
/
|
*
Issue #15247: FileIO now raises an error when given a file descriptor pointin...
Antoine Pitrou
2012-07-06
1
-12/+5
*
|
Fixes issue #12268: File readline, readlines and read() or readall() methods
Gregory P. Smith
2012-06-24
1
-0/+7
|
\
\
|
|
/
|
*
Fixes issue #12268: File readline, readlines and read() or readall() methods
Gregory P. Smith
2012-06-24
1
-0/+7
*
|
Simplify code in fileio_init
Hynek Schlawack
2012-06-22
1
-2/+1
*
|
#10053: Don't close FDs when FileIO.__init__ fails
Hynek Schlawack
2012-06-21
1
-6/+6
|
\
\
|
|
/
|
*
#10053: Don't close FDs when FileIO.__init__ fails
Hynek Schlawack
2012-06-21
1
-6/+5
*
|
#4841: Fix FileIO constructor to honor closefd when called repeatedly
Hynek Schlawack
2012-05-25
1
-3/+7
|
\
\
|
|
/
|
*
#4841: Fix FileIO constructor to honor closefd when called repeatedly
Hynek Schlawack
2012-05-25
1
-3/+7
*
|
Speed up reading of small files. This avoids multiple C read() calls on pyc ...
Antoine Pitrou
2012-04-17
1
-3/+11
*
|
Issue #13848: open() and the FileIO constructor now check for NUL characters ...
Antoine Pitrou
2012-01-29
1
-21/+9
|
\
\
|
|
/
|
*
Issue #13848: open() and the FileIO constructor now check for NUL characters ...
Antoine Pitrou
2012-01-29
1
-22/+11
*
|
Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode.
Charles-François Natali
2012-01-14
1
-3/+3
*
|
Issue #12760: Add a create mode to open(). Patch by David Townshend.
Charles-François Natali
2012-01-09
1
-10/+28
*
|
Issue #10350: Read and save errno before calling a function which might overw...
Antoine Pitrou
2011-12-16
1
-3/+11
|
\
\
|
|
/
|
*
Issue #10350: Read and save errno before calling a function which might overw...
Antoine Pitrou
2011-12-16
1
-3/+11
*
|
Replace {Get,Set,Has}AttrString with *AttrId.
Martin v. Löwis
2011-10-14
1
-1/+2
*
|
Issue #12797: Added custom opener parameter to builtin open() and FileIO.open().
Ross Lagerwall
2011-10-31
1
-12/+37
*
|
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis
2011-10-14
1
-1/+1
*
|
Merge #13159: Replace FileIO's quadratic-time buffer growth algorithm with a ...
Nadeem Vawda
2011-10-13
1
-15/+4
|
\
\
|
|
/
|
*
Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a ...
Nadeem Vawda
2011-10-13
1
-15/+4
*
|
Fix FileIO.readall() (new_buffersize()) for large files
Victor Stinner
2011-10-11
1
-1/+5
*
|
Fix io.FileIO.readall() on Windows 64 bits
Victor Stinner
2011-10-11
1
-4/+4
*
|
Add API for static strings, primarily good for identifiers.
Martin v. Löwis
2011-10-09
1
-2/+3
*
|
fileio_init() checks for failure on conversion to Py_UNICODE*
Victor Stinner
2011-09-29
1
-4/+6
[next]