<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/flake8.git/src/flake8/statistics.py, branch pre_commit_config</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>Use black to reformat Flake8</title>
<updated>2018-10-20T17:37:14+00:00</updated>
<author>
<name>Ian Stapleton Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2018-10-20T12:31:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=c58a4662d8920cf70ea688edd9eaf9d783a856a7'/>
<id>c58a4662d8920cf70ea688edd9eaf9d783a856a7</id>
<content type='text'>
Instead of just using Flake8 and pylint to keep Flake8 clean, let's also
use black to make it less manual for clean-up.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of just using Flake8 and pylint to keep Flake8 clean, let's also
use black to make it less manual for clean-up.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename style_guide.Error to style_guide.Violation</title>
<updated>2017-06-04T12:57:28+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2017-06-04T12:57:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=92c367dee4e5908745822902adfda0bd915b1380'/>
<id>92c367dee4e5908745822902adfda0bd915b1380</id>
<content type='text'>
Move all Violation related methods from the StyleGuide to our Violation
class.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move all Violation related methods from the StyleGuide to our Violation
class.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prefer iter(dict) instead of dict.keys()</title>
<updated>2017-05-27T18:54:06+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2017-05-27T18:54:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=db4f71288e02acc97b59389414ab2cec794436c7'/>
<id>db4f71288e02acc97b59389414ab2cec794436c7</id>
<content type='text'>
They are equivalent for iterating so remove the additional function
call.

Pattern identified as outdated by Lennart Regebro's PyCon 2017 talk
"Prehistoric Patterns in Python"

https://www.youtube.com/watch?v=V5-JH23Vk0I
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
They are equivalent for iterating so remove the additional function
call.

Pattern identified as outdated by Lennart Regebro's PyCon 2017 talk
"Prehistoric Patterns in Python"

https://www.youtube.com/watch?v=V5-JH23Vk0I
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up some uses of set, list, and dict</title>
<updated>2017-05-13T14:14:41+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2017-05-01T14:03:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=541bac6a824d2308d138df1f92458159c54ea7bc'/>
<id>541bac6a824d2308d138df1f92458159c54ea7bc</id>
<content type='text'>
* Use set literals instead of set([...])
* Avoid list(sorted(...)) as sorted returns a list
* Replace dict() with dict literal
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use set literals instead of set([...])
* Avoid list(sorted(...)) as sorted returns a list
* Replace dict() with dict literal
</pre>
</div>
</content>
</entry>
<entry>
<title>Wire-up --statistics again</title>
<updated>2016-07-25T19:29:09+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-07-25T19:29:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=4dc1d11a627a571eeae4e0ae3da7b94e7de04214'/>
<id>4dc1d11a627a571eeae4e0ae3da7b94e7de04214</id>
<content type='text'>
I'm not sure where this code went or when, but it disappeared. Let's
add it back.

Related #180
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I'm not sure where this code went or when, but it disappeared. Let's
add it back.

Related #180
</pre>
</div>
</content>
</entry>
<entry>
<title>Add actual tests around statistics module</title>
<updated>2016-07-12T13:21:57+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-07-12T13:21:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=2d3f06219199a4a7307a3c9a5c14b69be8608dca'/>
<id>2d3f06219199a4a7307a3c9a5c14b69be8608dca</id>
<content type='text'>
Also refactor our statistics module to be a bit smarter and less
namedtuple happy. The Statistic class had no reason to be a tuple,
I have no clue why I wrote it that way last night.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also refactor our statistics module to be a bit smarter and less
namedtuple happy. The Statistic class had no reason to be a tuple,
I have no clue why I wrote it that way last night.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add the statistics module</title>
<updated>2016-07-12T01:13:41+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-07-12T01:13:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=6cfb292b1b0e4f956b53e76b83f567b77cd1525e'/>
<id>6cfb292b1b0e4f956b53e76b83f567b77cd1525e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
