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
Commit message (
Expand
)
Author
Age
Files
Lines
*
[2.7] bpo-25359: Add missed "goto error" after setting an exception. (GH-3712...
Serhiy Storchaka
2017-09-27
1
-0/+1
*
bpo-31095: Fix potential crash during GC (GH-3197)
INADA Naoki
2017-09-04
1
-0/+1
*
[2.7] bpo-31243: Fixed PyArg_ParseTuple failure checks. (GH-3171) (#3235)
Oren Milman
2017-08-29
1
-1/+1
*
[2.7] bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() ...
Serhiy Storchaka
2017-04-19
1
-4/+9
*
bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is prese...
Xiang Zhang
2017-04-15
1
-12/+21
*
Fix spelling and markup in documentation and code comment
Martin Panter
2017-01-14
1
-1/+1
*
Issue #28768: Fix implicit declaration of function _setmode. Patch by Masayuk...
Steve Dower
2016-12-28
1
-0/+3
*
Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when
Serhiy Storchaka
2016-11-03
1
-8/+7
*
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Martin Panter
2016-09-07
1
-1/+1
*
Issue #25523: Correct "a" article to "an" article
Martin Panter
2015-11-02
3
-4/+4
*
Issue #23908: os functions, open() and the io.FileIO constructor now reject
Serhiy Storchaka
2016-07-01
1
-1/+14
*
Issue #20699: Document that “io” methods should accept memoryview
Martin Panter
2016-06-03
4
-6/+7
*
check the result of PyByteArray_Resize in readline() (closes #27211)
Benjamin Peterson
2016-06-04
1
-1/+4
*
Fix spelling (inital), grammar (may translates) in documentation, comments
Martin Panter
2016-04-19
1
-2/+2
*
Fix typos in code comment and documentation
Martin Panter
2016-04-16
1
-1/+1
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
2
-9/+9
*
Issue #20440: Applied yet one patch for using Py_SETREF.
Serhiy Storchaka
2015-12-27
2
-18/+9
*
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
Serhiy Storchaka
2015-12-19
2
-2/+2
*
Issue #22413: Document newline effect on StringIO initializer and getvalue
Martin Panter
2015-10-10
1
-1/+6
*
Issue #25030: Do not document seek() as if it accepts keyword arguments
Martin Panter
2015-09-11
1
-1/+1
*
Issue #19543: Emit deprecation warning for known non-text encodings.
Serhiy Storchaka
2015-05-31
1
-12/+22
*
Issue #21859: Corrected FileIO docstrings.
Serhiy Storchaka
2015-04-10
1
-14/+17
*
Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances.
Serhiy Storchaka
2015-03-30
1
-5/+2
*
Issue #23781: Add private helper function _PyErr_ReplaceException() that
Serhiy Storchaka
2015-03-30
3
-26/+6
*
Issue #21802: The reader in BufferedRWPair now is closed even when closing
Serhiy Storchaka
2015-03-24
1
-4/+17
*
Issue #5700: io.FileIO() called flush() after closing the file.
Serhiy Storchaka
2015-02-20
1
-7/+7
*
allow more operations to work on detached streams (closes #23093)
Benjamin Peterson
2014-12-22
2
-38/+39
*
clear BufferedRWPair weakrefs on deallocation (closes #22517)
Benjamin Peterson
2014-09-30
1
-0/+2
*
Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods.
Berker Peksag
2014-09-24
1
-3/+5
*
properly decref the return value of close()
Benjamin Peterson
2014-07-05
1
-3/+5
*
Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before,
Victor Stinner
2014-07-02
1
-2/+2
*
Issue #21310: Fixed possible resource leak in failed open().
Serhiy Storchaka
2014-06-09
1
-9/+21
*
Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_Resize
Kristján Valur Jónsson
2014-04-25
1
-12/+3
*
#15840: make docs consistent by saying operations on closed files raise Value...
Andrew Kuchling
2014-04-15
1
-2/+2
*
Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.
Serhiy Storchaka
2014-02-12
1
-2/+7
*
Issue #18876: The FileIO.mode attribute now better reflects the actual mode u...
Antoine Pitrou
2013-09-04
1
-10/+13
*
Issue #13461: Fix a crash in the TextIOWrapper.tell method and in the "replace"
Serhiy Storchaka
2013-08-20
1
-1/+1
*
Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,
Terry Jan Reedy
2013-03-11
1
-1/+1
*
#17275: Fix class name in init errors in C bufferedio classes.
R David Murray
2013-02-24
1
-2/+2
*
Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying
Serhiy Storchaka
2013-02-03
1
-19/+44
*
Additional fix for Issue #12268: The io module file object writelines() methods
Gregory P. Smith
2013-02-01
2
-3/+9
*
Issue #15989: Fix several occurrences of integer overflow
Serhiy Storchaka
2013-01-19
2
-4/+5
*
Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB
Victor Stinner
2013-01-03
1
-2/+11
*
call close on the underlying stream even if flush raises (#16597)
Benjamin Peterson
2012-12-20
2
-9/+33
*
Issue #16714: use 'raise' exceptions, don't 'throw'.
Andrew Svetlov
2012-12-18
1
-1/+1
*
Fixes Issue #12268 for the io module - File readline, readlines and
Gregory P. Smith
2012-10-12
5
-8/+49
*
#15796: Fix \n in readline docstring.
Ezio Melotti
2012-09-18
1
-1/+1
*
Issue #15841: The readable(), writable() and seekable() methods of io.BytesIO
Antoine Pitrou
2012-09-05
2
-8/+31
*
Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...
Antoine Pitrou
2012-08-15
1
-1/+4
*
Make TextIOWrapper's documentation clearer by copying the newline argument's ...
Antoine Pitrou
2012-08-03
1
-9/+16
[next]