You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix scalar comparisons vs None generally
fix NaT formattting in Series
TST: skip postgresql test with tz's
update for msgpack
Conflicts:
pandas/core/base.py
pandas/core/categorical.py
pandas/core/format.py
pandas/tests/test_base.py
pandas/util/testing.py
full interop for tz-aware Series & timedeltas pandas-dev#10763
Copy file name to clipboardExpand all lines: doc/source/basics.rst
+11-4
Original file line number
Diff line number
Diff line change
@@ -1549,9 +1549,10 @@ dtypes
1549
1549
------
1550
1550
1551
1551
The main types stored in pandas objects are ``float``, ``int``, ``bool``,
1552
-
``datetime64[ns]``, ``timedelta[ns]`` and ``object``. In addition these dtypes
1553
-
have item sizes, e.g. ``int64`` and ``int32``. A convenient :attr:`~DataFrame.dtypes``
1554
-
attribute for DataFrames returns a Series with the data type of each column.
1552
+
``datetime64[ns]`` and ``datetime64[ns, tz]`` (in >= 0.17.0), ``timedelta[ns]``, ``category`` (in >= 0.15.0), and ``object``. In addition these dtypes
1553
+
have item sizes, e.g. ``int64`` and ``int32``. See :ref:`Series with TZ <timeseries.timezone_series>` for more detail on ``datetime64[ns, tz]`` dtypes.
1554
+
1555
+
A convenient :attr:`~DataFrame.dtypes`` attribute for DataFrames returns a Series with the data type of each column.
Releasing of the GIL could benefit an application that uses threads for user interactions (e.g. ``QT``), or performaning multi-threaded computations. A nice example of a library that can handle these types of computation-in-parallel is the dask_ library.
567
646
568
647
.. _whatsnew_0170.performance:
569
648
@@ -587,6 +666,9 @@ Bug Fixes
587
666
588
667
589
668
- Bug in ``DataFrame.to_html(index=False)`` renders unnecessary ``name`` row (:issue:`10344`)
669
+
- Bug in ``DatetimeIndex`` when localizing with ``NaT`` (:issue:`10477`)
670
+
- Bug in ``Series.dt`` ops in preserving meta-data (:issue:`10477`)
671
+
- Bug in preserving ``NaT`` when passed in an otherwise invalid ``to_datetime`` construction (:issue:`10477`)
590
672
- Bug in ``DataFrame.apply`` when function returns categorical series. (:issue:`9573`)
591
673
- Bug in ``to_datetime`` with invalid dates and formats supplied (:issue:`10154`)
592
674
- Bug in ``Index.drop_duplicates`` dropping name(s) (:issue:`10115`)
0 commit comments