Skip to content

Resolution docstring #21122

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Jul 8, 2018
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
4dcb4b4
updated docstring for nanoseconds function
chalmerlowe May 15, 2018
e0ae113
Merge remote-tracking branch 'upstream/master' into nanosecond-docstring
chalmerlowe May 15, 2018
11a9266
DOC: updated docstring for nanoseconds function per doc guidelines
chalmerlowe May 15, 2018
04e204b
DOC: added examples to nanoseconds function and minor formatting edits
chalmerlowe May 15, 2018
5ac6ef1
DOC: added example header
chalmerlowe May 15, 2018
fb45759
DOC: added example header and space
chalmerlowe May 15, 2018
b0977f4
DOC: fixed minor spelling error
chalmerlowe May 15, 2018
85bcb52
removed trailing whitespace, long lines
chalmerlowe May 16, 2018
841611e
Merge remote-tracking branch 'upstream/master' into nanosecond-docstring
chalmerlowe May 16, 2018
4237391
DOC: updates to docstring for nanoseconds function per doc guidelines
chalmerlowe May 16, 2018
5035798
DOC: documentation guide update to resolution docstring
chalmerlowe May 17, 2018
3de9d58
Merge branch 'master' of https://github.com/pandas-dev/pandas into re…
chalmerlowe May 18, 2018
23a8aae
DOC: Improve docstring of Timedelta.resolution
chalmerlowe May 18, 2018
2c91847
DOC: Improve docstring of Timedelta.resolution
chalmerlowe May 18, 2018
83da2fe
DOC: Improve the docstring of Timedelta.resolution
chalmerlowe May 18, 2018
764f91a
DOC: Improve the docstring of Timedelta.resolution
chalmerlowe May 19, 2018
886f21a
Minor edits as suggested
chalmerlowe May 19, 2018
5737c67
DOC: Improve the docstring of Timedelta.resolution
chalmerlowe Jul 7, 2018
bf0def0
Merge remote-tracking branch 'upstream/master' into resolution-docstring
chalmerlowe Jul 7, 2018
1d0d397
Merge remote-tracking branch 'upstream/master' into resolution-docstring
Jul 7, 2018
ce7c795
remove whitespace
Jul 8, 2018
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
Prev Previous commit
Next Next commit
removed trailing whitespace, long lines
  • Loading branch information
chalmerlowe committed May 16, 2018
commit 85bcb525c7f0a9c87e77be3c96583d917cc298a6
7 changes: 4 additions & 3 deletions pandas/_libs/tslibs/timedeltas.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -800,8 +800,9 @@ cdef class _Timedelta(timedelta):

See Also
--------
Timedelta.components : Return all attributes with assigned values (i.e.
days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds).
Timedelta.components : Return all attributes with assigned values
(i.e. days, hours, minutes, seconds, milliseconds, microseconds,
nanoseconds).

Examples
--------
Expand All @@ -815,7 +816,7 @@ cdef class _Timedelta(timedelta):

>>> td = pd.Timedelta(42, unit='ns')
>>> td.nanoseconds
42
42
"""
self._ensure_components()
return self._ns
Expand Down