From: Debian Science Team Date: Sun, 27 Oct 2019 11:38:37 +0000 (+0000) Subject: spelling X-Git-Tag: archive/raspbian/0.25.3+dfsg2-2+rpi1~1^2^2^2^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c4789198d2a63a8c93e3e6ffeaddc2a40393d3a2;p=pandas.git spelling Author: Rebecca N. Palmer Origin: lintian Forwarded: no Gbp-Pq: Name spelling.patch --- diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index de9a5d5d..0114134b 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -605,7 +605,7 @@ Bug Fixes - Bug in ``.astype()`` of a ``Float64Inde/Int64Index`` to an ``Int64Index`` (:issue:`12881`) - Bug in roundtripping an integer based index in ``.to_json()/.read_json()`` when ``orient='index'`` (the default) (:issue:`12866`) - Bug in plotting ``Categorical`` dtypes cause error when attempting stacked bar plot (:issue:`13019`) -- Compat with >= ``numpy`` 1.11 for ``NaT`` comparions (:issue:`12969`) +- Compat with >= ``numpy`` 1.11 for ``NaT`` comparisons (:issue:`12969`) - Bug in ``.drop()`` with a non-unique ``MultiIndex``. (:issue:`12701`) - Bug in ``.concat`` of datetime tz-aware and naive DataFrames (:issue:`12467`) - Bug in correctly raising a ``ValueError`` in ``.resample(..).fillna(..)`` when passing a non-string (:issue:`12952`) diff --git a/pandas/_libs/lib.pyx b/pandas/_libs/lib.pyx index ae9d240a..baf6eea6 100644 --- a/pandas/_libs/lib.pyx +++ b/pandas/_libs/lib.pyx @@ -417,7 +417,7 @@ def maybe_booleans_to_slice(ndarray[uint8_t] mask): @cython.wraparound(False) @cython.boundscheck(False) cpdef bint array_equivalent_object(object[:] left, object[:] right): - """ perform an element by element comparion on 1-d object arrays + """ perform an element by element comparison on 1-d object arrays taking into account nan positions """ cdef: Py_ssize_t i, n = left.shape[0]