Skip to content

Fix bug in contains when looking up a string in a non-monotonic datet… #13574

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

Closed
wants to merge 45 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
f3b114f
Fix bug in contains when looking up a string in a non-monotonic datet…
tjader Jul 6, 2016
cc0a188
BUG: Groupby.nth includes group key inconsistently #12839
adneu Jul 6, 2016
2655dae
In gbq, use googleapiclient instead of apiclient #13454 (#13458)
parthea Jul 7, 2016
f11b9c1
RLS: switch master from 0.18.2 to 0.19.0 (#13586)
jorisvandenbossche Jul 8, 2016
ba82b51
BUG: Datetime64Formatter not respecting ``formatter``
haleemur Jul 8, 2016
f95576b
BUG: Fix TimeDelta to Timedelta (#13600)
yui-knk Jul 9, 2016
5701c69
COMPAT: 32-bit compat fixes mainly in testing
jreback Jul 7, 2016
3c202b1
Added more exhaustive tests for __contains__.
tjader Jul 9, 2016
713eaa6
BUG: DatetimeIndex - Period shows ununderstandable error
sinhrks Jul 10, 2016
675a6e3
ENH: add downcast to pd.to_numeric
gfyoung Jul 10, 2016
1edc1df
CLN: remove radd workaround in ops.py
sinhrks Jul 10, 2016
2a96ab7
DEPR: rename Timestamp.offset to .freq
sinhrks Jul 10, 2016
c989570
CLN: Remove the engine parameter in CSVFormatter and to_csv
gfyoung Jun 10, 2016
c2cc68d
BUG: Block/DTI doesnt handle tzlocal properly
sinhrks Jul 10, 2016
2e8c993
BUG: Series contains NaT with object dtype comparison incorrect (#13592)
sinhrks Jul 11, 2016
5605f99
CLN/TST: Add tests for nan/nat mixed input (#13477)
sinhrks Jul 11, 2016
2f7fdd0
BUG: groupby apply on selected columns yielding scalar (GH13568) (#13…
jorisvandenbossche Jul 11, 2016
65849d3
TST: Clean up tests of DataFrame.sort_{index,values} (#13496)
IamJeffG Jul 11, 2016
8dbc0f4
DOC: asfreq clarify original NaNs are not filled (GH9963) (#13617)
jorisvandenbossche Jul 12, 2016
93b7d13
BUG: Invalid Timedelta op may raise ValueError
sinhrks Jul 12, 2016
dbd5330
CLN: Cleanup ops.py
sinhrks Jul 12, 2016
7c357d2
CLN: Removed outtype in DataFrame.to_dict (#13627)
gfyoung Jul 12, 2016
27d2915
CLN: Fix compile time warnings
yui-knk Jul 13, 2016
06103dd
Pin IPython for doc build to 4.x (see #13639)
jorisvandenbossche Jul 13, 2016
7dd4091
CLN: reorg type inference & introspection
jreback Jul 13, 2016
20de266
BLD: included pandas.api.* in setup.py (#13640)
gfyoung Jul 13, 2016
44f3229
DOC/BLD: pin IPython version to 4.2.0 (#13639) (#13647)
jorisvandenbossche Jul 14, 2016
6f0a020
TST: reorganize tools.tests (#13619)
sinhrks Jul 14, 2016
a711b42
BF(TST): allow AttributeError being raised (in addition to TypeError)…
yarikoptic Jul 14, 2016
084ceae
API, DEPR: Raise and Deprecate Reshape for Pandas Objects
gfyoung Jul 14, 2016
3f6d4bd
CLN: Fix compile time warnings
yui-knk Jul 14, 2016
c9a27ed
CLN: fix some issues in asv benchmark suite (#13630)
jorisvandenbossche Jul 14, 2016
05b976c
TST: add tests for Timestamp.toordinal/fromordinal
sinhrks Jul 15, 2016
71a0675
CLN: Initialization coincides with mapping, hence with uniqueness check
toobaz Jul 15, 2016
0a70b5f
API: Change Period('NAT') to return NaT
sinhrks Jul 15, 2016
1bee56e
BUG: construction of Series with integers on windows not default to i…
jreback Jul 15, 2016
d7c028d
CLN: Removed levels attribute from Categorical
gfyoung Jul 15, 2016
401b0ed
Fix bug in contains when looking up a string in a non-monotonic datet…
tjader Jul 6, 2016
1a86b3a
Added more exhaustive tests for __contains__.
tjader Jul 9, 2016
3bf7cce
Fix bug in contains when looking up a string in a non-monotonic datet…
tjader Jul 6, 2016
0f5a4e0
Added more exhaustive tests for __contains__.
tjader Jul 9, 2016
783ea6d
Fix bug in contains when looking up a string in a non-monotonic datet…
tjader Jul 6, 2016
592a09d
Added more exhaustive tests for __contains__.
tjader Jul 9, 2016
690e034
Fix bug in contains when looking up a string in a non-monotonic datet…
tjader Jul 6, 2016
d4348d3
Merge remote-tracking branch 'origin/bugfixes' into bugfixes
tjader Jul 16, 2016
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
Fix bug in contains when looking up a string in a non-monotonic datet…
…ime index and the object in question is first in the index.
  • Loading branch information
tjader committed Jul 16, 2016
commit 783ea6d0c21cb255f8edac1657e1c50c12a74f59
2 changes: 1 addition & 1 deletion pandas/tests/indexes/test_datetimelike.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

from datetime import timedelta, time, date, datetime
from datetime import timedelta, time

import numpy as np

Expand Down