Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
7e1a9aacff95c68d284f31666fe293fa2db5406d
/
Lib
/
fileinput.py
aca273e
bpo-37014: Update docstring and Documentation of fileinput.FileInput(). (GH-13545)
by Michele Angrisano
· 5 years ago
1a3faf9
bpo-36952: Remove the bufsize parameter in fileinput.input(). (GH-13400)
by Matthias Bussonnier
· 5 years ago
be6dbfb
bpo-1613500: Don't hardcode output file mode in fileinput.FileInput (GH-12986)
by Berker Peksag
· 6 years ago
8377cd4
Clean up code which checked presence of os.{stat,lstat,chmod} (#11643)
by Anthony Sottile
· 6 years ago
84a13fb
bpo-9372: Deprecate several __getitem__ methods (GH-8609)
by Berker Peksag
· 6 years ago
06de1ae
bpo-31281: Fix pathlib.Path incompatibility in fileinput (gh-3208)
by Zhiming Wang
· 7 years ago
002665a
bpo-30432: FileInput doesn't accept PathLike objects for file names (#1732)
by Roy Williams
· 7 years ago
b275210
Issue #25788: fileinput.hook_encoded() now supports an "errors" argument
by Serhiy Storchaka
· 9 years ago
aadaa36
Issue #15068: Avoid creating a reference loop in fileinput.
by Serhiy Storchaka
· 9 years ago
0554d83
Issue #15068: Avoid creating a reference loop in fileinput.
by Serhiy Storchaka
· 9 years ago
674e2d0
Issue #15068: Got rid of excessive buffering in fileinput.
by Serhiy Storchaka
· 9 years ago
cc2dbc5
Issue #15068: Got rid of excessive buffering in the fileinput module.
by Serhiy Storchaka
· 9 years ago
7978e10
Issue #23883: Missing fileinput.__all__ APIs; patch by Mauro SM Rodrigues
by Martin Panter
· 9 years ago
830207e
#22709: Use stdin as-is if it does not have a buffer attribute.
by R David Murray
· 9 years ago
56275dc
Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''
by Serhiy Storchaka
· 9 years ago
314464d
Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''
by Serhiy Storchaka
· 9 years ago
7e7a3db
Issue #23865: close() methods in multiple modules now are idempotent and more
by Serhiy Storchaka
· 10 years ago
2116b12
Issue #23865: close() methods in multiple modules now are idempotent and more
by Serhiy Storchaka
· 10 years ago
946cfc3
Issue #21075: fileinput.FileInput now reads bytes from standard stream if
by Serhiy Storchaka
· 10 years ago
2480c2e
Issue #15204: Silence and check the 'U' mode deprecation warnings in tests.
by Serhiy Storchaka
· 11 years ago
6787a38
Issue #15204: Deprecated the 'U' mode in file-like objects.
by Serhiy Storchaka
· 11 years ago
b1c6827
Merge with 3.3
by Terry Jan Reedy
· 11 years ago
70d2c71
Issue #18315: Improve fileinput docs by adding 'bufsize' where missing and
by Terry Jan Reedy
· 11 years ago
f7a17b4
Replace IOError with OSError (#16715)
by Andrew Svetlov
· 12 years ago
ad28c7f
Issue #16706: get rid of os.error
by Andrew Svetlov
· 12 years ago
a011e2b
fileinput: replace this last occurence of codecs.open with builtins.open.
by Florent Xicluna
· 13 years ago
5d1155c
Closes #13258: Use callable() built-in in the standard library.
by Florent Xicluna
· 13 years ago
6cb7b65
#1286: allow using fileinput.FileInput as context manager.
by Georg Brandl
· 14 years ago
ef0a865
Use PEP 8 and true booleans.
by Georg Brandl
· 15 years ago
6203d8f
Patch 1341 by Amaury Forgeot d'Arc.
by Guido van Rossum
· 17 years ago
3172c5d
Patch# 1258 by Christian Heimes: kill basestring.
by Guido van Rossum
· 17 years ago
ce36ad8
Raise statement normalization in Lib/.
by Collin Winter
· 17 years ago
7a98be2
Remove RISCOS support
by Skip Montanaro
· 17 years ago
d59da4b
Merged revisions 55407-55513 via svnmerge from
by Guido van Rossum
· 17 years ago
a18af4e
PEP 3114: rename .next() to .__next__() and add next() builtin.
by Georg Brandl
· 18 years ago
be19ed7
Fix most trivially-findable print statements.
by Guido van Rossum
· 18 years ago
200a580
Whitespace normalization.
by Tim Peters
· 19 years ago
c98eeed
Patch #1215184: FileInput now can be given an opening hook which can
by Georg Brandl
· 19 years ago
c029f87
Patch #1212287: fileinput.input() now has a mode parameter for
by Georg Brandl
· 19 years ago
67e9fb9
Patch #1215184: fileinput now has a fileno() function for getting the
by Georg Brandl
· 19 years ago
e466217
Patch #1337756: fileinput now accepts Unicode filenames.
by Georg Brandl
· 19 years ago
52941a8
Test that chmod() actually exists before calling it (it doesn't on MacOS9).
by Jack Jansen
· 22 years ago
cffac66
tightening up a few except: clauses see bug 411881
by Skip Montanaro
· 22 years ago
294bbf3
Replace obsolete stat module constants with
by Walter Dörwald
· 22 years ago
8ac1495
Whitespace normalization.
by Tim Peters
· 22 years ago
d1fa3db
Added docstrings excerpted from Python Library Reference. Closes patch 556161.
by Raymond Hettinger
· 23 years ago
863ac44
Whitespace normalization.
by Tim Peters
· 23 years ago
8ca162f
Partial introduction of bools where appropriate.
by Guido van Rossum
· 23 years ago
908632a
Implement iterator protocol.
by Neil Schemenauer
· 23 years ago
e2ae77b
SF patch #474590 -- RISC OS support
by Guido van Rossum
· 23 years ago
eccd02a
more __all__ updates
by Skip Montanaro
· 24 years ago
4795524
Speed it up by using readlines(sizehint). It's still slower than
by Guido van Rossum
· 24 years ago
2516b39
Implement suggestion from Lawrence Kesteloot in PR#280, to change the
by Guido van Rossum
· 25 years ago
dcb8583
Fix for PR#111: when using the inplace option, give the new file the
by Guido van Rossum
· 25 years ago
0aec9fb
Add missing initializer for self._backupfilename. Due to Ralph Butler.
by Guido van Rossum
· 26 years ago
45e2fbc
Mass check-in after untabifying all files that need it.
by Guido van Rossum
· 27 years ago
7d5b99d
A new standard module, as discussed on comp.lang.python, to simplify
by Guido van Rossum
· 27 years ago