Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/matplotlib/dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -980,6 +980,11 @@ def __call__(self, x, pos=None):


class rrulewrapper:
"""
A simple wrapper around a ``dateutil.rrule`` allowing almost
arbitrary date tick specifications.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe "allowing flexible date tick ...".

"""

def __init__(self, freq, tzinfo=None, **kwargs):
kwargs['freq'] = freq
self._base_tzinfo = tzinfo
Expand Down