8000 backport of 25643, 25638 on 0.24.x by jreback · Pull Request #25645 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

backport of 25643, 25638 on 0.24.x #25645

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
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
add PY2 import
  • Loading branch information
jreback committed Mar 10, 2019
commit 532ea18bd06f0347abb32d87dbc1fffd21fff7fc
2 changes: 1 addition & 1 deletion pandas/tests/frame/test_constructors.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import pytest

from pandas.compat import (
PY3, PY36, OrderedDict, is_platform_little_endian, lmap, long, lrange,
PY2, PY3, PY36, OrderedDict, is_platform_little_endian, lmap, long, lrange,
lzip, range, zip)

from pandas.core.dtypes.cast import construct_1d_object_array_from_listlike
Expand Down
0