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
Merge remote-tracking branch 'upstream/master' into to_html-to_string
* upstream/master:
BUG: to_html misses truncation indicators (...) when index=False (pandas-dev#22786)
API/DEPR: replace "raise_conflict" with "errors" for df.update (pandas-dev#23657)
BUG: Append DataFrame to Series with dateutil timezone (pandas-dev#23685)
CLN/CI: Catch that stderr-warning! (pandas-dev#23706)
ENH: Allow for join between two multi-index dataframe instances (pandas-dev#20356)
Ensure Index._data is an ndarray (pandas-dev#23628)
DOC: flake8-per-pr for windows users (pandas-dev#23707)
DOC: Handle exceptions when computing contributors. (pandas-dev#23714)
DOC: Validate space before colon docstring parameters pandas-dev#23483 (pandas-dev#23506)
BUG-22984 Fix truncation of DataFrame representations (pandas-dev#22987)
:func:`Datafame.merge` and :func:`Dataframe.join` can now be used to join multi-indexed ``Dataframe`` instances on the overlaping index levels (:issue:`6360`)
- The ``fastpath`` keyword of the different Index constructors is deprecated (:issue:`23110`).
984
1025
- :meth:`Timestamp.tz_localize`, :meth:`DatetimeIndex.tz_localize`, and :meth:`Series.tz_localize` have deprecated the ``errors`` argument in favor of the ``nonexistent`` argument (:issue:`8917`)
985
1026
- The class ``FrozenNDArray`` has been deprecated. When unpickling, ``FrozenNDArray`` will be unpickled to ``np.ndarray`` once this class is removed (:issue:`9031`)
1027
+
- The methods :meth:`DataFrame.update` and :meth:`Panel.update` have deprecated the ``raise_conflict=False|True`` keyword in favor of ``errors='ignore'|'raise'`` (:issue:`23585`)
986
1028
- Deprecated the `nthreads` keyword of :func:`pandas.read_feather` in favor of
987
1029
`use_threads` to reflect the changes in pyarrow 0.11.0. (:issue:`23053`)
988
1030
- :func:`pandas.read_excel` has deprecated accepting ``usecols`` as an integer. Please pass in a list of ints from 0 to ``usecols`` inclusive instead (:issue:`23527`)
@@ -1321,7 +1363,9 @@ Notice how we now instead output ``np.nan`` itself instead of a stringified form
1321
1363
- :func:`read_sas()` will correctly parse sas7bdat files with many columns (:issue:`22628`)
1322
1364
- :func:`read_sas()` will correctly parse sas7bdat files with data page types having also bit 7 set (so page type is 128 + 256 = 384) (:issue:`16615`)
1323
1365
- Bug in :meth:`detect_client_encoding` where potential ``IOError`` goes unhandled when importing in a mod_wsgi process due to restricted access to stdout. (:issue:`21552`)
1324
-
- Bug in :func:`to_string()` that broke column alignment when ``index=False`` and width of first column's values is greater than the width of first column's header (:issue:`16839`, :issue:`13032`)
1366
+
- Bug in :func:`to_html()` with ``index=False`` misses truncation indicators (...) on truncated DataFrame (:issue:`15019`, :issue:`22783`)
1367
+
- Bug in :func:`DataFrame.to_string()` that broke column alignment when ``index=False`` and width of first column's values is greater than the width of first column's header (:issue:`16839`, :issue:`13032`)
1368
+
- Bug in :func:`DataFrame.to_string()` that caused representations of :class:`DataFrame` to not take up the whole window (:issue:`22984`)
1325
1369
- Bug in :func:`DataFrame.to_csv` where a single level MultiIndex incorrectly wrote a tuple. Now just the value of the index is written (:issue:`19589`).
1326
1370
- Bug in :meth:`HDFStore.append` when appending a :class:`DataFrame` with an empty string column and ``min_itemsize`` < 8 (:issue:`12242`)
1327
1371
- Bug in :meth:`read_csv()` in which :class:`MultiIndex` index names were being improperly handled in the cases when they were not provided (:issue:`23484`)
@@ -1374,6 +1418,7 @@ Reshaping
1374
1418
- Bug in :func:`pandas.concat` when concatenating a multicolumn DataFrame with tz-aware data against a DataFrame with a different number of columns (:issue:`22796`)
1375
1419
- Bug in :func:`merge_asof` where confusing error message raised when attempting to merge with missing values (:issue:`23189`)
1376
1420
- Bug in :meth:`DataFrame.nsmallest` and :meth:`DataFrame.nlargest` for dataframes that have a :class:`MultiIndex` for columns (:issue:`23033`).
1421
+
- Bug in :meth:`DataFrame.append` with a :class:`Series` with a dateutil timezone would raise a ``TypeError`` (:issue:`23682`)
0 commit comments