8000 CLN: datetimelike arrays: isort, small reorg by jbrockmendel · Pull Request #23587 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

CLN: datetimelike arrays: isort, small reorg #23587

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
Nov 12, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
e3267bc
import mixins without mixins in names
jbrockmendel Nov 8, 2018
d4bde65
isort timedeltas, datetimelike, datetime index files
jbrockmendel Nov 8, 2018
a2754c1
Section header
jbrockmendel Nov 8, 2018
e81f5d6
implement repr, with tests, truncate long reprs for periodarray, rear…
jbrockmendel Nov 8, 2018
1647ea2
isort
jbrockmendel Nov 9, 2018
c99ca32
Merge branch 'master' of https://github.com/pandas-dev/pandas into dl…
jbrockmendel Nov 9, 2018
db1d446
remove repr changes
TomAugspurger Nov 9, 2018
1355f59
Merge branch 'master' of https://github.com/pandas-dev/pandas into dl…
jbrockmendel Nov 9, 2018
14d5e76
isort fixup
jbrockmendel Nov 10, 2018
a0c7bf4
Merge branch 'master' of https://github.com/pandas-dev/pandas into dl…
jbrockmendel Nov 10, 2018
edab7a2
Merge branch 'master' of https://github.com/pandas-dev/pandas into dl…
jbrockmendel Nov 11, 2018
dd85053
typo fixup
jbrockmendel Nov 11, 2018
e0c3fcf
Merge branch 'master' of https://github.com/pandas-dev/pandas into dl…
jbrockmendel Nov 11, 2018
6fe6496
Merge branch 'master' of https://github.com/pandas-dev/pand 8000 as into dl…
jbrockmendel Nov 11, 2018
469ac83
remove repr tests
jbrockmendel Nov 11, 2018
65209f1
fixup imports
jbrockmendel Nov 11, 2018
0ada030
flake8 fixups
jbrockmendel Nov 11, 2018
58dedcf
Merge branch 'master' of https://github.com/pandas-dev/pandas into dl…
jbrockmendel Nov 11, 2018
0a17757
docstring suggestions
jbrockmendel Nov 11, 2018
4ac9576
fixup unused import
jbrockmendel Nov 12, 2018
c7211f7
undo remaining repr changes
jorisvandenbossche Nov 12, 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
flake8 fixups
  • Loading branch information
jbrockmendel committed Nov 11, 2018
commit 0ada03004726d9558dd10f94772a359d9cb7721f
1 change: 0 additions & 1 deletion pandas/tests/arrays/test_datetimes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import operator

import numpy as np
import pytest

import pandas as pd
from pandas.core.arrays import DatetimeArrayMixin as DatetimeArray
Expand Down
4 changes: 0 additions & 4 deletions pandas/tests/arrays/test_timedeltas.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
# -*- coding: utf-8 -*-
import pytest

import pandas as pd
from pandas.core.arrays import TimedeltaArrayMixin as TimedeltaArray


class TestTimedeltaArray(object):
Expand Down
0