summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_io.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when rawSerhiy Storchaka2013-05-281-0/+9
|\
| * Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when rawSerhiy Storchaka2013-05-281-0/+9
* | Issue #17835: Fix test_io when the default OS pipe buffer size is larger than...Antoine Pitrou2013-04-241-2/+2
|\ \ | |/
| * Issue #17835: Fix test_io when the default OS pipe buffer size is larger than...Antoine Pitrou2013-04-241-2/+2
* | #17479: merge with 3.3.Ezio Melotti2013-03-231-3/+4
|\ \ | |/
| * #17479: test_io now works with unittest test discovery. Patch by Zachary Ware.Ezio Melotti2013-03-231-3/+4
* | Merge #17275: Fix class name in init errors in C bufferedio classes.R David Murray2013-02-241-0/+18
|\ \ | |/
| * Merge #17275: Fix class name in init errors in C bufferedio classes.R David Murray2013-02-241-0/+18
| |\
| | * #17275: Fix class name in init errors in C bufferedio classes.R David Murray2013-02-241-0/+18
* | | Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-0/+24
|\ \ \ | |/ /
| * | Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-0/+24
| |\ \ | | |/
| | * Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlyingSerhiy Storchaka2013-02-031-0/+24
| * | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-0/+9
| |\ \ | | |/
| | * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-0/+9
* | | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-141-0/+9
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-26/+26
* | | merge 3.3 (#16597)Benjamin Peterson2012-12-201-0/+28
|\ \ \ | |/ /
| * | call close on the underlying stream even if flush raises (closes #16597)Benjamin Peterson2012-12-201-0/+28
* | | Get rig of EnvironmentError (#16705)Andrew Svetlov2012-12-171-1/+1
* | | Merge for issue #15744: add tests for the writelines() method of file objects.Antoine Pitrou2012-10-161-1/+46
|\ \ \ | |/ /
| * | Merge for issue #15744: add tests for the writelines() method of file objects.Antoine Pitrou2012-10-161-1/+46
| |\ \ | | |/
| | * Also add tests for TextIOWrapper.writelines() (issue #15744).Antoine Pitrou2012-10-161-0/+22
| | * Add tests for the writelines() method of file objects.Antoine Pitrou2012-10-161-1/+24
* | | Closes #15488: Closed files keep their buffer aliveJesus Cea2012-10-041-0/+8
|/ /
* | Added test for 85cb90f79cbf and see how the code handles all flags at onceChristian Heimes2012-09-101-0/+5
* | Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.Antoine Pitrou2012-07-291-3/+17
|\ \ | |/
| * Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.Antoine Pitrou2012-07-291-3/+17
* | Issue #13248: io: Remove obsolete argument "max_buffer_size" of BufferedWrite...Florent Xicluna2012-07-071-6/+4
* | Backout change e8f44ebacda7052267318cecf5b6f128d35add17. Reverting the testGregory P. Smith2012-06-251-5/+5
|\ \ | |/
| * Backout change e8f44ebacda7052267318cecf5b6f128d35add17. Reverting the testGregory P. Smith2012-06-251-5/+5
* | Fixes issue #12268: File readline, readlines and read() or readall() methodsGregory P. Smith2012-06-241-5/+5
|\ \ | |/
| * Speed up test_io by >2x by reducing the sleep time using setitimer instead ofGregory P. Smith2012-06-241-5/+5
* | Closes #10142: Support for SEEK_HOLE/SEEK_DATAJesus Cea2012-06-221-1/+1
* | Close #11022: TextIOWrapper doesn't call locale.setlocale() anymoreVictor Stinner2012-06-051-8/+27
* | #4841: Fix FileIO constructor to honor closefd when called repeatedlyHynek Schlawack2012-05-251-0/+13
|\ \ | |/
| * #4841: Fix FileIO constructor to honor closefd when called repeatedlyHynek Schlawack2012-05-251-0/+13
* | Issue #13848: open() and the FileIO constructor now check for NUL characters ...Antoine Pitrou2012-01-291-0/+5
|\ \ | |/
| * Issue #13848: open() and the FileIO constructor now check for NUL characters ...Antoine Pitrou2012-01-291-0/+5
* | Issue #12760: Add a create mode to open(). Patch by David Townshend.Charles-François Natali2012-01-091-0/+13
* | Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError isAntoine Pitrou2011-11-211-4/+76
|\ \ | |/
| * Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError isAntoine Pitrou2011-11-211-4/+74
* | Issue #12797: Added custom opener parameter to builtin open() and FileIO.open().Ross Lagerwall2011-10-311-0/+9
* | PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou2011-10-121-6/+0
* | Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycleCharles-François Natali2011-10-051-0/+15
|\ \ | |/
| * Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycleCharles-François Natali2011-10-051-0/+15
* | Issue #13087: BufferedReader.seek() now always raises UnsupportedOperationAntoine Pitrou2011-10-041-0/+8
|\ \ | |/
| * Issue #13087: BufferedReader.seek() now always raises UnsupportedOperationAntoine Pitrou2011-10-041-0/+8
* | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1).Ezio Melotti2011-09-281-2/+2
* | merge 3.2 (#12878)Benjamin Peterson2011-09-031-0/+11
|\ \ | |/
| * add a __dict__ descr for IOBase (closes #12878)Benjamin Peterson2011-09-031-0/+11