<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/flake8.git/flake8, branch bug/69</title>
<subtitle>gitlab.com: pycqa/flake8.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/'/>
<entry>
<title>Handle EPIPE IOErrors when using more than 1 job</title>
<updated>2015-08-16T19:00:32+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-08-16T19:00:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=d98e1729b3e1e83d796727d59be610dae4254611'/>
<id>d98e1729b3e1e83d796727d59be610dae4254611</id>
<content type='text'>
If someone is using flake8 and piping it to a command like `head`, the
command they are piping flake8's output too may close the pipe earlier
than flake8 expects. To avoid extraneous exception output being printed,
we now catch IOErrors and check their errnos to ensure they're something
we know we can ignore.

This also provides flexibility to add further errnos for ignoring on a
case-by-case basis.

Closes #69
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If someone is using flake8 and piping it to a command like `head`, the
command they are piping flake8's output too may close the pipe earlier
than flake8 expects. To avoid extraneous exception output being printed,
we now catch IOErrors and check their errnos to ensure they're something
we know we can ignore.

This also provides flexibility to add further errnos for ignoring on a
case-by-case basis.

Closes #69
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix flake8 tests using mock to work with 1.1.x branch</title>
<updated>2015-07-10T14:34:49+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-07-10T14:34:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=b0f30f97fbec04c1ab7cb8937f636822eab63885'/>
<id>b0f30f97fbec04c1ab7cb8937f636822eab63885</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update version identifier</title>
<updated>2015-06-02T18:25:49+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>ian.cordasco@rackspace.com</email>
</author>
<published>2015-06-02T18:25:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=d7e17ed2958465a7720c38640b4a082511d89646'/>
<id>d7e17ed2958465a7720c38640b4a082511d89646</id>
<content type='text'>
This got lost in Vancouver somewhere
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This got lost in Vancouver somewhere
</pre>
</div>
</content>
</entry>
<entry>
<title>Turn off dependency requirements</title>
<updated>2015-05-18T23:37:43+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>ian.cordasco@rackspace.com</email>
</author>
<published>2015-05-18T23:37:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=97dba87d1d005af92df9c184f0eea57a018f1430'/>
<id>97dba87d1d005af92df9c184f0eea57a018f1430</id>
<content type='text'>
This is a quickfix to help openstack unbreak their gate requirements
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a quickfix to help openstack unbreak their gate requirements
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix parsing ignore</title>
<updated>2015-04-30T21:18:31+00:00</updated>
<author>
<name>Tyrel Souza</name>
<email>tyrelsouza@gmail.com</email>
</author>
<published>2015-04-30T02:25:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=daf043b7aef0044f2492cef95959a43f9faf586c'/>
<id>daf043b7aef0044f2492cef95959a43f9faf586c</id>
<content type='text'>
https://gitlab.com/pycqa/flake8/issues/40

* Adding an ignore option in [flake8] wasn't working because pep8.StyleGuide
turned the string sent in into a tuple, which the option parser needs to receive
as an iterable that isn't a string. Split on spaces, commas, or semicolons using
re.findall in order to get a list of error/warnings to pass to StyleGuide
properly.

* Add self to contributors

(cherry picked from commit 8f8a7d458f8f46669398591bffd93462d4e439ed)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://gitlab.com/pycqa/flake8/issues/40

* Adding an ignore option in [flake8] wasn't working because pep8.StyleGuide
turned the string sent in into a tuple, which the option parser needs to receive
as an iterable that isn't a string. Split on spaces, commas, or semicolons using
re.findall in order to get a list of error/warnings to pass to StyleGuide
properly.

* Add self to contributors

(cherry picked from commit 8f8a7d458f8f46669398591bffd93462d4e439ed)
</pre>
</div>
</content>
</entry>
<entry>
<title>Utilize generator expression instead of list comprehension</title>
<updated>2015-04-18T05:22:37+00:00</updated>
<author>
<name>Corey Farwell</name>
<email>coreyf@rwell.org</email>
</author>
<published>2015-04-18T05:22:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=5ba109ba939aaab05e1b9c0da56d988d86fb391d'/>
<id>5ba109ba939aaab05e1b9c0da56d988d86fb391d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change the git-hook ignore default to None</title>
<updated>2015-04-06T04:01:44+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-04-06T04:01:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=12fab2f8ad8f09553cebdf6a077519266eae9002'/>
<id>12fab2f8ad8f09553cebdf6a077519266eae9002</id>
<content type='text'>
When ignore is an empty string, it will apparently not run any checks at
all. Using None as the default ensures that it does run the appropriate
checks.

Closes #52
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When ignore is an empty string, it will apparently not run any checks at
all. Using None as the default ensures that it does run the appropriate
checks.

Closes #52
</pre>
</div>
</content>
</entry>
<entry>
<title>Move test back where it was</title>
<updated>2015-03-17T00:27:39+00:00</updated>
<author>
<name>Christian Long</name>
<email>christianzlong@gmail.com</email>
</author>
<published>2015-03-17T00:27:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=ef3a47a1551b0230a22f8c20d662ac7ea80d3841'/>
<id>ef3a47a1551b0230a22f8c20d662ac7ea80d3841</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Document the other things I tried</title>
<updated>2015-03-17T00:12:46+00:00</updated>
<author>
<name>Christian Long</name>
<email>christianzlong@gmail.com</email>
</author>
<published>2015-03-17T00:12:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=63d8af6af50fb2a838c973c50c363ff68ee80951'/>
<id>63d8af6af50fb2a838c973c50c363ff68ee80951</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Run some tests separately</title>
<updated>2015-03-16T23:21:57+00:00</updated>
<author>
<name>Christian Long</name>
<email>christianzlong@gmail.com</email>
</author>
<published>2015-03-16T23:13:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=7663dbd485b2796fedebf96d3e44875e908dc59b'/>
<id>7663dbd485b2796fedebf96d3e44875e908dc59b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
