<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/flake8.git, branch 3.7.6</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>Release 3.7.6</title>
<updated>2019-02-18T19:58:12+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-02-18T19:58:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=9b770f590ecca6e5d2e1c50ad707337e6695cfd4'/>
<id>9b770f590ecca6e5d2e1c50ad707337e6695cfd4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'mypy_improvements' into 'master'</title>
<updated>2019-02-17T15:23:30+00:00</updated>
<author>
<name>Ian Stapleton Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2019-02-17T15:23:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=59c2f093de827167386c63d6a60c04012a8a2768'/>
<id>59c2f093de827167386c63d6a60c04012a8a2768</id>
<content type='text'>
Improve a few mypy type annotations

See merge request pycqa/flake8!307</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Improve a few mypy type annotations

See merge request pycqa/flake8!307</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'perf_only_one_proc' into 'master'</title>
<updated>2019-02-17T15:23:12+00:00</updated>
<author>
<name>Ian Stapleton Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2019-02-17T15:23:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=a21d74152bff0e24dc27f32c5a6b019cb0b9a0e3'/>
<id>a21d74152bff0e24dc27f32c5a6b019cb0b9a0e3</id>
<content type='text'>
Speed up flake8 when only 1 filename is passed

See merge request pycqa/flake8!305</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Speed up flake8 when only 1 filename is passed

See merge request pycqa/flake8!305</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'less_monkeypatch' into 'master'</title>
<updated>2019-02-17T15:22:44+00:00</updated>
<author>
<name>Ian Stapleton Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2019-02-17T15:22:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=2170f54cb35d790dc30ef1687a03b599e17fab04'/>
<id>2170f54cb35d790dc30ef1687a03b599e17fab04</id>
<content type='text'>
Remove pyflakes monkeypatching

See merge request pycqa/flake8!306</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove pyflakes monkeypatching

See merge request pycqa/flake8!306</pre>
</div>
</content>
</entry>
<entry>
<title>Improve a few mypy type annotations</title>
<updated>2019-02-17T08:16:19+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-02-17T02:36:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=c71fadb18ca9f23d8a6474c0155404b49e21c30e'/>
<id>c71fadb18ca9f23d8a6474c0155404b49e21c30e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Speed up flake8 when only 1 filename is passed</title>
<updated>2019-02-17T08:15:00+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-02-17T01:28:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=e8f43e12431b15e31a265408b6f79955c6da1690'/>
<id>e8f43e12431b15e31a265408b6f79955c6da1690</id>
<content type='text'>
~40% improvement over status quo (perf measurements are best-of-5)

### before

```console
$ time flake8 /dev/null

real    0m0.337s
user    0m0.212s
sys     0m0.028s
```

### after

```console
$ time flake8 /dev/null

real    0m0.197s
user    0m0.182s
sys     0m0.012s
```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
~40% improvement over status quo (perf measurements are best-of-5)

### before

```console
$ time flake8 /dev/null

real    0m0.337s
user    0m0.212s
sys     0m0.028s
```

### after

```console
$ time flake8 /dev/null

real    0m0.197s
user    0m0.182s
sys     0m0.012s
```
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove pyflakes monkeypatching</title>
<updated>2019-02-17T02:05:00+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-02-17T02:05:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=a252a0b1386ee815833f2edae0ffa45aa23032ac'/>
<id>a252a0b1386ee815833f2edae0ffa45aa23032ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'update-options-ignore-defaults' into 'master'</title>
<updated>2019-02-16T17:29:30+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-02-16T17:29:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=684ffb3306af89e4092c4598aa9ae4294eb52eb8'/>
<id>684ffb3306af89e4092c4598aa9ae4294eb52eb8</id>
<content type='text'>
Update documented --ignore defaults to match code

See merge request pycqa/flake8!304</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update documented --ignore defaults to match code

See merge request pycqa/flake8!304</pre>
</div>
</content>
</entry>
<entry>
<title>options.rst: Update --ignore defaults to match code</title>
<updated>2019-02-16T17:16:12+00:00</updated>
<author>
<name>Kevin Locke</name>
<email>kevin@kevinlocke.name</email>
</author>
<published>2019-02-16T17:16:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=d225687c028b8fdee951d8d01cb48dd659910776'/>
<id>d225687c028b8fdee951d8d01cb48dd659910776</id>
<content type='text'>
3d512ae added W503 and W504 to defaults.IGNORE, but the documentation
was never updated.  This commit updates the docs to match the code.

Signed-off-by: Kevin Locke &lt;kevin@kevinlocke.name&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
3d512ae added W503 and W504 to defaults.IGNORE, but the documentation
was never updated.  This commit updates the docs to match the code.

Signed-off-by: Kevin Locke &lt;kevin@kevinlocke.name&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'allow_multiple_letters_in_codes' into 'master'</title>
<updated>2019-02-11T14:25:26+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-02-11T14:25:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=dc7b082b96751c8ef7bfc616f8701d432afa7ef7'/>
<id>dc7b082b96751c8ef7bfc616f8701d432afa7ef7</id>
<content type='text'>
FIX 507: allow multiple letters in codes

See merge request pycqa/flake8!303</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
FIX 507: allow multiple letters in codes

See merge request pycqa/flake8!303</pre>
</div>
</content>
</entry>
</feed>
