summaryrefslogtreecommitdiff
path: root/Lib/test/test_file.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842)Alexey Izbyshev2018-10-201-13/+24
* bpo-34031: fix incorrect usage of self.fail in two tests (GH-8091)Bradley Laney2018-07-101-2/+1
* bpo-33751: Fix test_file. (GH-7378)Serhiy Storchaka2018-06-051-84/+78
* Issue #23277: Remove unused support.run_unittest import.Serhiy Storchaka2016-04-241-1/+1
* Issue #20557: Use specific asserts in io tests.Serhiy Storchaka2015-08-021-2/+2
|\
| * Issue #20557: Use specific asserts in io tests.Serhiy Storchaka2015-08-021-2/+2
* | - Issue #2091: error correctly on open() with mode 'U' and '+'Robert Collins2015-07-261-1/+1
|/
* #14853: merge with 3.3.Ezio Melotti2013-07-251-10/+0
|\
| * #14853: remove test that was making too many assumptions about stdin. Patch ...Ezio Melotti2013-07-251-10/+0
* | #17163: merge with 3.3.Ezio Melotti2013-02-151-14/+10
|\ \ | |/
| * #17163: test_file now works with unittest test discovery. Patch by Zachary W...Ezio Melotti2013-02-151-14/+10
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-5/+5
|/
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-7/+7
* Fix resource warning in test_file. Patch by Brian Brazil.Antoine Pitrou2010-10-301-0/+2
* Issue #8990: array.fromstring() and array.tostring() get renamed toAntoine Pitrou2010-09-011-2/+2
* Merged revisions 79024 via svnmerge fromEzio Melotti2010-03-181-1/+1
* Merged revisions 78093 via svnmerge fromGeorg Brandl2010-03-141-1/+1
* Remove AtheOS support, as per PEP 11 (which claims that all code was removed ...Antoine Pitrou2009-10-241-2/+1
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-4/+4
* merge the io-c branch: C implementation of the io moduleBenjamin Peterson2009-03-041-15/+32
* Merged revisions 67908 via svnmerge fromSkip Montanaro2008-12-231-0/+2
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-1/+1
* Move UserList to collections.Raymond Hettinger2008-02-121-1/+1
* The final occurrences of exception slicing.Georg Brandl2008-01-061-1/+1
* Patch # 1323 by Amaury Forgeot d'Arc.Guido van Rossum2007-10-251-7/+6
* More changes needed to make things work once bytes and str are truly divorced.Guido van Rossum2007-08-271-3/+3
* Fix test_file.py. It was passing on OSX for the wrong reasonGuido van Rossum2007-07-101-2/+2
* Add proper tests for closed files to various I/O operations,Guido van Rossum2007-07-101-10/+20
* Made test_file pass. This meant adding support for read(-1) and read()Guido van Rossum2007-07-101-57/+32
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-1/+1
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-3/+3
* When removing indexing/slicing on exceptions some places were changedBrett Cannon2007-03-211-1/+1
* Remove the ability to slice/index on exceptions per PEP 352.Brett Cannon2007-02-271-1/+1
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-091-4/+0
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-2/+2
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-2/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-30/+48
* Merge the rest of the trunk.Thomas Wouters2006-06-081-343/+312
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-1/+1
* Added much functionality to the bytes type.Guido van Rossum2006-04-241-4/+15
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-5/+11
* Get rid of xreadlines() (methods).Neal Norwitz2006-03-171-1/+1
* New test code failed to close the file. This causedTim Peters2006-02-141-13/+12
* SF patch #1397960: When mixing file-iteration andThomas Wouters2006-02-121-1/+111
* Revert r41662 and the part of 41552 that originally caused the problemNeal Norwitz2005-12-151-7/+0
* mwh spotted a copied error message, make it unique (and correct)Neal Norwitz2005-12-051-1/+1
* Fix SF #1373161, r41552 broke test_file on OS XNeal Norwitz2005-12-051-1/+1
* Improve test coverage. Hope the test_file changes work the same on windows.Neal Norwitz2005-11-271-0/+33
* Disallow opening files with modes 'aU' or 'wU' as specified by PEPSkip Montanaro2005-05-201-0/+10
* Fix tests dependent on the exception raised by non-settable descriptors.Barry Warsaw2005-04-201-2/+2