Skip to content
Open
Changes from all commits
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
10 changes: 5 additions & 5 deletions arrow/arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def range(cls, frame, start, end=None, tz=None, limit=None):
iterating. As such, either call with naive objects and ``tz``, or aware objects from the
same timezone and no ``tz``.

Supported frame values: year, quarter, month, week, day, hour, minute, second.
Supported frame values: year, quarter, month, week, day, hour, minute, second, microsecond.

Recognized datetime expressions:

Expand Down Expand Up @@ -378,7 +378,7 @@ def span_range(cls, frame, start, end, tz=None, limit=None, bounds="[)"):
iterating. As such, either call with naive objects and ``tz``, or aware objects from the
same timezone and no ``tz``.

Supported frame values: year, quarter, month, week, day, hour, minute, second.
Supported frame values: year, quarter, month, week, day, hour, minute, second, microsecond.

Recognized datetime expressions:

Expand Down Expand Up @@ -424,7 +424,7 @@ def interval(cls, frame, start, end, interval=1, tz=None, bounds="[)"):
the start, '[' includes the start, ')' excludes the end, and ']' includes the end.
If the bounds are not specified, the default bound '[)' is used.

Supported frame values: year, quarter, month, week, day, hour, minute, second
Supported frame values: year, quarter, month, week, day, hour, minute, second, microsecond.

Recognized datetime expressions:

Expand All @@ -447,7 +447,7 @@ def interval(cls, frame, start, end, interval=1, tz=None, bounds="[)"):
...
(<Arrow [2013-05-05T12:00:00+00:00]>, <Arrow [2013-05-05T13:59:59.999999+00:00]>)
(<Arrow [2013-05-05T14:00:00+00:00]>, <Arrow [2013-05-05T15:59:59.999999+00:00]>)
(<Arrow [2013-05-05T16:00:00+00:00]>, <Arrow [2013-05-05T17:59:59.999999+00:0]>)
(<Arrow [2013-05-05T16:00:00+00:00]>, <Arrow [2013-05-05T17:59:59.999999+00:00]>)
"""
if interval < 1:
raise ValueError("interval has to be a positive integer")
Expand Down Expand Up @@ -750,7 +750,7 @@ def span(self, frame, count=1, bounds="[)"):
the start, '[' includes the start, ')' excludes the end, and ']' includes the end.
If the bounds are not specified, the default bound '[)' is used.

Supported frame values: year, quarter, month, week, day, hour, minute, second.
Supported frame values: year, quarter, month, week, day, hour, minute, second, microsecond.

Usage::

Expand Down