summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/datetime.c
Commit message (Expand)AuthorAgeFilesLines
* MAINT: Merge public and private dtype API as much as possibleSebastian Berg2023-02-141-4/+4
* DOC: try to clarify datetime not using DTypePromotionError commentSebastian Berg2022-12-031-7/+4
* MAINT: Rename to DTypePromotionErrorSebastian Berg2022-12-021-1/+1
* DOC,TST: address review comments and improve test coverageSebastian Berg2022-12-021-7/+9
* ENH: Add an InvalidPromotion exceptionSebastian Berg2022-12-011-0/+7
* Cleanup: Fix designator order not matching declaration orderjuztamau52022-11-071-1/+1
* MAINT: core: Fix a typo in a datetime error message.warren2022-09-211-1/+1
* Fix datetime_to_timedelta_resolve_descriptors signatureHood Chatham2022-06-301-1/+2
* ENH: Move `ensure_dtype_nbo` onto the DType as `ensure_canonical`Sebastian Berg2022-02-181-7/+7
* MAINT: Use intp output param viewable casts/methods (#20176)Sebastian Berg2021-12-201-14/+19
* BUG: fix time cast-safety for `factor*unit` e.g. in `10**6*ms == 1*s` (#19731)Tyler Reddy2021-10-021-1/+21
* MAINT: Fix LGTM.com warning: Comparison result is always the same (`denom`)Dimitri Papadopoulos2021-09-281-1/+1
* DOC: Typos found by codespellDimitri Papadopoulos2021-09-211-1/+1
* STY: Small cleanups of includes in *.c files.Charles Harris2021-09-031-7/+8
* MAINT: Rename `NPY_DT_call_*` to `NPY_DT_CALL_*`Sebastian Berg2021-08-021-1/+1
* MAINT: Refactor DType slots into an opaque, allocated structSebastian Berg2021-07-291-1/+1
* Fix out-of-bounds array access in convert_datetime_divisor_to_multiple().Peter Hawkins2021-06-091-4/+6
* MAINT,BUG: Adapt `castingimpl.casting` to denote a minimal levelSebastian Berg2021-06-051-2/+1
* BUG: string->datetime64 does not support byte swappingSebastian Berg2021-02-111-7/+8
* MAINT: Fix casting signatures to align with NEP 43Sebastian Berg2021-02-111-21/+62
* MAINT: Implement new casting loops based on NEP 42 and 43Sebastian Berg2021-01-081-8/+115
* Address Matti's comments from yesterdaySebastian Berg2020-11-241-19/+23
* MAINT: Rewrite can-cast logic in terms of NEP 42Sebastian Berg2020-11-241-0/+371
* MAINT: Remove append_metastr_to_string function.Charles Harris2020-09-291-65/+1
* ENH: Add metastr_to_unicode function to datetime.c.Charles Harris2020-09-291-47/+111
* ENH: Allow μs as an alias for usEric Wieser2020-08-281-0/+4
* MAINT: Produce a better error message for unicode datetime formatsEric Wieser2020-08-281-52/+54
* MAINT: Simplify error message formatting, push declarations down-fileEric Wieser2020-08-281-13/+9
* Merge branch 'master' into cleanup-LongEric Wieser2020-08-241-18/+18
|\
| * MAINT: Replace PyUString_* by PyUnicode_* equivalents.Charles Harris2020-08-231-18/+18
* | MAINT: Replace PyInt macros with their PyLong replacementEric Wieser2020-08-241-16/+15
|/
* Replace AdaptFlexibleDType with object and delete some datetime thing relatedSebastian Berg2020-07-081-158/+7
* MAINT: Unify casting error creation (outside the iterator)Sebastian Berg2020-05-021-1/+1
* MAINT: Improve const-correctness of string argumentsEric Wieser2020-01-061-13/+21
* Fix other incorrect narrowing for format stringsEric Wieser2019-10-171-8/+8
* BUG: Default start to 0 for timedelta arangeEric Wieser2019-10-151-0/+6
* MAINT: C99-ify declarations in datetime_arangeEric Wieser2019-10-151-18/+16
* MAINT: Use `extract_unit` throughout datetimeEric Wieser2019-10-091-138/+101
* MAINT: Add const qualifier in some places where clang suggests itSebastian Berg2019-09-111-1/+1
* MAINT: Add NPY_UNUSED in many places where it was missingSebastian Berg2019-09-111-6/+10
* BUG: Fix DeprecationWarning in python 3.8 due to implicit conversion to intEric Wieser2019-07-281-1/+4
* BUG: Refcount fixes (#13860)Sebastian Berg2019-07-031-0/+3
* MAINT: Simplify logic in convert_datetime_to_datetimestructEric Wieser2019-03-281-133/+78
* BUG: Add missing error checking in conversion from integers to datetime typesEric Wieser2019-03-021-0/+9
* BUG: Fix incorrect/missing reference cleanups found using valgrind (#12624)Sebastian Berg2019-01-031-4/+12
* BUG: timedelta64 now accepts np ints.Tyler Reddy2018-09-011-0/+10
* BUG: 0D object array to timedeltaTyler Reddy2018-08-301-12/+44
* Merge pull request #11155 from eric-wieser/datetime-stack-overflowMarten van Kerkwijk2018-06-081-10/+14
|\
| * BUG: Prevent stackoverflow in conversion to datetime typesEric Wieser2018-05-241-10/+14
* | Merge pull request #11097 from shoyer/timedelta-unitsEric Wieser2018-05-261-1/+4
|\ \ | |/ |/|