summaryrefslogtreecommitdiff
path: root/Lib/fileinput.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-37014: Update docstring and Documentation of fileinput.FileInput(). (GH-1...Miss Islington (bot)2019-06-021-3/+3
* bpo-31281: Fix pathlib.Path incompatibility in fileinput (gh-3208)Zhiming Wang2017-09-041-1/+1
* bpo-30432: FileInput doesn't accept PathLike objects for file names (#1732)Roy Williams2017-05-221-0/+2
* Issue #25788: fileinput.hook_encoded() now supports an "errors" argumentSerhiy Storchaka2016-04-271-2/+2
* Issue #15068: Avoid creating a reference loop in fileinput.Serhiy Storchaka2016-03-081-13/+15
|\
| * Issue #15068: Avoid creating a reference loop in fileinput.Serhiy Storchaka2016-03-081-13/+15
* | Issue #15068: Got rid of excessive buffering in fileinput.Serhiy Storchaka2016-03-081-90/+76
|\ \ | |/
| * Issue #15068: Got rid of excessive buffering in the fileinput module.Serhiy Storchaka2016-03-081-88/+73
* | Issue #23883: Missing fileinput.__all__ APIs; patch by Mauro SM RodriguesMartin Panter2016-01-161-1/+2
|/
* #22709: Use stdin as-is if it does not have a buffer attribute.R David Murray2016-01-021-1/+1
* Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''Serhiy Storchaka2015-11-011-1/+4
|\
| * Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''Serhiy Storchaka2015-11-011-1/+4
* | Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-21/+25
|\ \ | |/
| * Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-19/+23
|/
* Issue #21075: fileinput.FileInput now reads bytes from standard stream ifSerhiy Storchaka2014-05-141-1/+4
* Issue #15204: Silence and check the 'U' mode deprecation warnings in tests.Serhiy Storchaka2013-11-241-1/+1
* Issue #15204: Deprecated the 'U' mode in file-like objects.Serhiy Storchaka2013-11-231-0/+4
* Merge with 3.3Terry Jan Reedy2013-06-281-7/+5
|\
| * Issue #18315: Improve fileinput docs by adding 'bufsize' where missing andTerry Jan Reedy2013-06-281-7/+5
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-3/+3
* | Issue #16706: get rid of os.errorAndrew Svetlov2012-12-181-2/+4
|/
* fileinput: replace this last occurence of codecs.open with builtins.open.Florent Xicluna2011-11-071-2/+1
* Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-281-4/+5
* #1286: allow using fileinput.FileInput as context manager.Georg Brandl2010-07-311-0/+6
* Use PEP 8 and true booleans.Georg Brandl2009-05-171-8/+9
* Patch 1341 by Amaury Forgeot d'Arc.Guido van Rossum2007-10-291-3/+5
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-1/+1
* Raise statement normalization in Lib/.Collin Winter2007-08-301-10/+10
* Remove RISCOS supportSkip Montanaro2007-08-161-1/+1
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-1/+1
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-2/+2
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-3/+3
* Whitespace normalization.Tim Peters2006-02-191-2/+2
* Patch #1215184: FileInput now can be given an opening hook which canGeorg Brandl2006-02-191-6/+36
* Patch #1212287: fileinput.input() now has a mode parameter forGeorg Brandl2006-02-191-10/+16
* Patch #1215184: fileinput now has a fileno() function for getting theGeorg Brandl2006-02-191-3/+21
* Patch #1337756: fileinput now accepts Unicode filenames.Georg Brandl2006-02-191-1/+1
* Test that chmod() actually exists before calling it (it doesn't on MacOS9).Jack Jansen2003-01-081-1/+2
* tightening up a few except: clausesSkip Montanaro2002-08-141-3/+3
* Replace obsolete stat module constants withWalter Dörwald2002-06-061-2/+2
* Whitespace normalization.Tim Peters2002-05-231-9/+9
* Added docstrings excerpted from Python Library Reference.Raymond Hettinger2002-05-151-0/+49
* Whitespace normalization.Tim Peters2002-04-161-1/+1
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-4/+4
* Implement iterator protocol.Neil Schemenauer2002-03-261-4/+13
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-1/+1
* more __all__ updatesSkip Montanaro2001-01-201-0/+3
* Speed it up by using readlines(sizehint). It's still slower thanGuido van Rossum2001-01-051-10/+39
* Implement suggestion from Lawrence Kesteloot in PR#280, to change theGuido van Rossum2000-04-101-6/+7
* Fix for PR#111: when using the inplace option, give the new file theGuido van Rossum1999-10-181-3/+15