MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / sorted_by_field

Function sorted_by_field

tools/github_stats.py:141–143  ·  view source on GitHub ↗

Return a list of issues sorted by closing date.

(issues, field='closed_at', reverse=False)

Source from the content-addressed store, hash-verified

139
140
141def sorted_by_field(issues, field='closed_at', reverse=False):
142 """Return a list of issues sorted by closing date."""
143 return sorted(issues, key=lambda i: i[field], reverse=reverse)
144
145
146def report(issues, show_urls=False):

Callers 1

github_stats.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…