summaryrefslogtreecommitdiff
path: root/Lib/test/test_fileinput.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-36952: Remove the bufsize parameter in fileinput.input(). (GH-13400)Matthias Bussonnier2019-05-201-31/+19
* bpo-1613500: Don't hardcode output file mode in fileinput.FileInput (GH-12986)Berker Peksag2019-04-291-0/+10
* Clean up code which checked presence of os.{stat,lstat,chmod} (#11643)Anthony Sottile2019-02-251-1/+0
* bpo-9372: Deprecate several __getitem__ methods (GH-8609)Berker Peksag2018-08-111-0/+10
* bpo-33753: Refactor creating temporary files in test_fileinput. (GH-7377)Serhiy Storchaka2018-06-051-148/+101
* bpo-31281: Fix pathlib.Path incompatibility in fileinput (gh-3208)Zhiming Wang2017-09-041-0/+13
* bpo-30432: FileInput doesn't accept PathLike objects for file names (#1732)Roy Williams2017-05-221-0/+15
* Issue #25788: fileinput.hook_encoded() now supports an "errors" argumentSerhiy Storchaka2016-04-271-1/+20
* Issue #23277: Remove unused support.run_unittest import.Serhiy Storchaka2016-04-241-1/+1
* Issue #15068: Got rid of excessive buffering in fileinput.Serhiy Storchaka2016-03-081-4/+75
|\
| * Issue #15068: Got rid of excessive buffering in the fileinput module.Serhiy Storchaka2016-03-081-1/+69
* | Issue #23883: Missing fileinput.__all__ APIs; patch by Mauro SM RodriguesMartin Panter2016-01-161-0/+8
|/
* #22709: Use stdin as-is if it does not have a buffer attribute.R David Murray2016-01-021-0/+11
* Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''Serhiy Storchaka2015-11-011-0/+15
* Issue #21075: fileinput.FileInput now reads bytes from standard stream ifSerhiy Storchaka2014-05-141-1/+9
* Correct comments and improve failure reports in test_fileinput (closes #20501).Serhiy Storchaka2014-03-031-4/+7
|\
| * Correct comments and improve failure reports in test_fileinput (closes #20501).Serhiy Storchaka2014-03-031-4/+7
* | Added tests for issue #20501.Serhiy Storchaka2014-02-261-0/+38
|\ \ | |/
| * Added tests for issue #20501.Serhiy Storchaka2014-02-261-0/+36
* | Issue #15204: Silence and check the 'U' mode deprecation warnings in tests.Serhiy Storchaka2013-11-241-3/+5
* | Update various test modules to use unittest.main() for test discoveryBrett Cannon2013-06-121-17/+1
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-2/+2
|/
* fileinput: replace this last occurence of codecs.open with builtins.open.Florent Xicluna2011-11-071-19/+9
* Skip test in test_fileinput when zlib is missing.Ezio Melotti2011-05-141-1/+5
* Fix #11596. When bz2 isn't available, skip test_bz2_ext_fake.briancurtin2011-03-181-1/+6
* Move off of assertEquals() and over to assertEqual().Brett Cannon2011-03-151-3/+3
* Adjust test names to be more descriptive instead of depending on capitalization.briancurtin2011-03-151-4/+4
* import style nitsBenjamin Peterson2011-03-151-8/+13
* Fix #11509. Significantly increase test coverage for fileinput.briancurtin2011-03-151-15/+605
* #1286: allow using fileinput.FileInput as context manager.Georg Brandl2010-07-311-0/+24
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-3/+3
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-2/+2
* Ensure cleanup does not reference variables that don't yet exist.Neal Norwitz2008-03-241-0/+4
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+1
* More changes needed to make things work once bytes and str are truly divorced.Guido van Rossum2007-08-271-17/+21
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-1/+1
* Fix a buch of shallow test failures.Guido van Rossum2007-06-181-32/+37
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-200/+197
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-1/+1
* Make a few more tests pass with the new I/O library.Guido van Rossum2007-04-121-1/+2
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-13/+13
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+4
* Repair new test failures on Windows due toTim Peters2006-02-191-4/+4
* Patch #1215184: FileInput now can be given an opening hook which canGeorg Brandl2006-02-191-1/+23
* Patch #1212287: fileinput.input() now has a mode parameter forGeorg Brandl2006-02-191-1/+18
* Patch #1215184: fileinput now has a fileno() function for getting theGeorg Brandl2006-02-191-0/+16
* Patch #1337756: fileinput now accepts Unicode filenames.Georg Brandl2006-02-191-0/+10
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* SF patch #440170: Tests for fileinput module.Tim Peters2001-07-111-0/+159