<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython.git/Lib/fileinput.py, branch master</title>
<subtitle>
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/'/>
<entry>
<title>Issue #25788: fileinput.hook_encoded() now supports an "errors" argument</title>
<updated>2016-04-27T20:13:46+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-04-27T20:13:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/commit/?id=159dc3b31845ae04523bf11f9557fcac603114bc'/>
<id>159dc3b31845ae04523bf11f9557fcac603114bc</id>
<content type='text'>
for passing to open.  Original patch by Joseph Hackman.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
for passing to open.  Original patch by Joseph Hackman.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #15068: Avoid creating a reference loop in fileinput.</title>
<updated>2016-03-08T21:36:25+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-03-08T21:36:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/commit/?id=af4258543df3b5e2d1ea278ce232032904a04723'/>
<id>af4258543df3b5e2d1ea278ce232032904a04723</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #15068: Avoid creating a reference loop in fileinput.</title>
<updated>2016-03-08T21:35:35+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-03-08T21:35:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/commit/?id=3f51034684cfb43e96cbcd2773831e2e5e6959bf'/>
<id>3f51034684cfb43e96cbcd2773831e2e5e6959bf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #15068: Got rid of excessive buffering in fileinput.</title>
<updated>2016-03-08T16:35:19+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-03-08T16:35:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/commit/?id=382e80c85505be5909d3d738fd936e039a6c6c3a'/>
<id>382e80c85505be5909d3d738fd936e039a6c6c3a</id>
<content type='text'>
The bufsize parameter is now deprecated and ignored.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The bufsize parameter is now deprecated and ignored.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #15068: Got rid of excessive buffering in the fileinput module.</title>
<updated>2016-03-08T16:28:36+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-03-08T16:28:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/commit/?id=9d2efe46b0b370a51cfc44bac527782ad89be94e'/>
<id>9d2efe46b0b370a51cfc44bac527782ad89be94e</id>
<content type='text'>
The bufsize parameter is no longer used.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The bufsize parameter is no longer used.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #23883: Missing fileinput.__all__ APIs; patch by Mauro SM Rodrigues</title>
<updated>2016-01-16T06:26:54+00:00</updated>
<author>
<name>Martin Panter</name>
<email>vadmium+py@gmail.com</email>
</author>
<published>2016-01-16T06:26:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/commit/?id=fb66bde91a50572b03b4246045c212e11d8ab05d'/>
<id>fb66bde91a50572b03b4246045c212e11d8ab05d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>#22709: Use stdin as-is if it does not have a buffer attribute.</title>
<updated>2016-01-02T20:41:41+00:00</updated>
<author>
<name>R David Murray</name>
<email>rdmurray@bitdance.com</email>
</author>
<published>2016-01-02T20:41:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/commit/?id=2264ec1f2f1a1b92f9ee181df2e44bcaddc73b45'/>
<id>2264ec1f2f1a1b92f9ee181df2e44bcaddc73b45</id>
<content type='text'>
This restores backward compatibility lost in the fix for #21075, and
is better duck typing.

Patch by Akira Li.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This restores backward compatibility lost in the fix for #21075, and
is better duck typing.

Patch by Akira Li.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''</title>
<updated>2015-11-01T14:45:26+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-11-01T14:45:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/commit/?id=4ec569b31165987c3f55b2401db5404a2a50ab2f'/>
<id>4ec569b31165987c3f55b2401db5404a2a50ab2f</id>
<content type='text'>
at the end if the FileInput was opened with binary mode.
Patch by Ryosuke Ito.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
at the end if the FileInput was opened with binary mode.
Patch by Ryosuke Ito.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''</title>
<updated>2015-11-01T14:43:58+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-11-01T14:43:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/commit/?id=f89b2c2ac4782f1054b756b556808da16792efa6'/>
<id>f89b2c2ac4782f1054b756b556808da16792efa6</id>
<content type='text'>
at the end if the FileInput was opened with binary mode.
Patch by Ryosuke Ito.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
at the end if the FileInput was opened with binary mode.
Patch by Ryosuke Ito.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #23865: close() methods in multiple modules now are idempotent and more</title>
<updated>2015-04-10T10:24:41+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-04-10T10:24:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython.git/commit/?id=5ad135a27c826f97a2d87091485f490568bbf65d'/>
<id>5ad135a27c826f97a2d87091485f490568bbf65d</id>
<content type='text'>
robust at shutdown. If needs to release multiple resources, they are released
even if errors are occured.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
robust at shutdown. If needs to release multiple resources, they are released
even if errors are occured.
</pre>
</div>
</content>
</entry>
</feed>
