-
-
Notifications
You must be signed in to change notification settings - Fork 19.2k
ENH: implement DatetimeLikeArray #19902
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
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
df9f894
implement DatetimeLikeArray
jbrockmendel 004f137
docstring
jbrockmendel db72494
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 80b525e
move classes to array directory
jbrockmendel 54009d4
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 65dc829
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 4c5a05c
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel b91ddac
flake8 fixup remove unused import
jbrockmendel 080e477
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel e19f70a
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 47d365e
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 3a67bce
comments for cache_readonlys, append Mixin to name, add imports to __…
jbrockmendel 7fc73eb
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 9edd9bc
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 1236273
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 1ab6263
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 9a28188
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 6b17031
fix merge screwup
jbrockmendel b03689a
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel a055d40
rename arrays to FooArray Mixin
jbrockmendel d1faeb6
fixups imports
jbrockmendel fcb8d6a
fixup namerror
jbrockmendel 8cee92c
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 375329e
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 71dfe08
fixup missing import
jbrockmendel 59c60a2
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 9db2b78
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 308c25b
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 94bdfcb
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel d589e2a
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 0d4f48a
reorder imports
jbrockmendel 1b910c7
De-pluralize
jbrockmendel cece116
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel 828022a
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel ed83046
fixup remove unused import
jbrockmendel c1934db
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel a684c2d
Merge branch 'master' of https://github.com/pandas-dev/pandas into dt…
jbrockmendel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fixups imports
- Loading branch information
commit d1faeb69359bd50b7bc6d5288904d06c870e4ea1
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| from .base import ExtensionArray # noqa | ||
| from .categorical import Categorical # noqa | ||
| from .datetimes import DatetimeArray # noqa | ||
| from .periods import PeriodArray # noqa | ||
| from .timedeltas import TimedeltaArray # noqa | ||
| from .datetimes import DatetimeArrayMixin # noqa | ||
| from .periods import PeriodArrayMixin # noqa | ||
| from .timedeltas import TimedeltaArrayMixin # noqa | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you make this
period? and below timedeltaI am fine with keeping the conflicting one as plural, if you want that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
which is "the conflicting one"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I was speaking about the file name, not the order. So to use singular
periodinstead ofperiods(and same for timedelta), as we discussed about before: https://github.com/pandas-dev/pandas/pull/19902/files/3a67bce8169663430005b2a36673132fc1e79f4c#r175774283