Skip to content

ENH: Improve Pandas scalars #383

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 30 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5c0dc1c
ENH: Improve DatetimeTZDtype
bashtage Oct 11, 2022
9f5058f
ENH: Improve PeriodDtype
bashtage Oct 11, 2022
7ad615a
ENH: Improve IntervalDtype
bashtage Oct 11, 2022
fb6d782
ENH: Improve CategoricalDtype
bashtage Oct 11, 2022
fecd9f9
ENH: Improve StringDtype and StringArray
bashtage Oct 11, 2022
5adba7b
ENH: Improve BooleanDtype and BooleanArray
bashtage Oct 11, 2022
c4dca27
ENH: Improve Timestamp
bashtage Oct 11, 2022
d86adfd
ENH: Improve Timedelta
bashtage Oct 11, 2022
79f56c2
ENH: Further improvements to Timestamp
bashtage Oct 11, 2022
cc390f5
CLN: Additional cleanups to pass tests
bashtage Oct 11, 2022
c044a8c
ENH: Improve Period
bashtage Oct 11, 2022
f58c47c
TST Add tests for dtypes
Oct 11, 2022
fbfa4c1
Merge remote-tracking branch 'upstream/main' into pandas-scalars
Oct 11, 2022
ccbde88
TST: Correct types in tests
Oct 12, 2022
25aa8c9
Merge branch 'pandas-scalars' of github.com:bashtage/pandas-stubs int…
bashtage Oct 12, 2022
290f951
BUG: Correct errors in period and interval
bashtage Oct 12, 2022
e62cc10
TST: Add tests for Period
bashtage Oct 12, 2022
9c6b963
TST: Add tests for timedelta
bashtage Oct 12, 2022
e93ca54
TST: Add tests for arrays
bashtage Oct 13, 2022
9070b0d
TST: Add more scalar tests
Oct 13, 2022
28e127e
ENH: Complete Timedelta
bashtage Oct 13, 2022
f59c689
Merge remote-tracking branch 'upstream/main' into pandas-scalars
bashtage Oct 13, 2022
2f262d4
ENH: Improve Timestamp and enable tests
bashtage Oct 13, 2022
7dd8c56
TST: Add reverse ops
bashtage Oct 14, 2022
9c2d500
ENH/TST: Improve Period and its tests
bashtage Oct 14, 2022
0c2f5ca
ENH/TST: Improve Timestamp, Timedelta and their tests
bashtage Oct 14, 2022
e224537
REF: Move tests to test_scalar
bashtage Oct 14, 2022
08156cc
CLN: Final fixes to passing
bashtage Oct 14, 2022
1672751
BUG: Correct Interval
bashtage Oct 14, 2022
4c3ea13
ENH: Improve array typing
bashtage Oct 15, 2022
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
3 changes: 1 addition & 2 deletions pandas-stubs/_libs/tslibs/timestamps.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Timestamp(datetime):
def __new__(
cls: type[_DatetimeT],
ts_input: np.integer | float | str | _date | datetime | np.datetime64 = ...,
freq: int | str | BaseOffset | None = ...,
*,
tz: str | _tzinfo | tzfile | int | None = ...,
unit: str | int | None = ...,
year: int | None = ...,
Expand All @@ -52,7 +52,6 @@ class Timestamp(datetime):
microsecond: int | None = ...,
nanosecond: int | None = ...,
tzinfo: _tzinfo | None = ...,
*,
fold: Literal[0, 1] | None = ...,
) -> _DatetimeT: ...
# GH 46171
Expand Down
Loading