diff --git a/doc/source/install.rst b/doc/source/install.rst index 31fee45eb0266..aaa39dd383e2e 100644 --- a/doc/source/install.rst +++ b/doc/source/install.rst @@ -267,11 +267,11 @@ Optional Dependencies installation. * Google's `python-gflags `__ and `google-api-python-client `__ - * Needed for :mod:`~pandas.io.gbq` + * Needed for :mod:`~pandas.io.gbq` * `setuptools `__ - * Needed for :mod:`~pandas.io.gbq` (specifically, it utilizes `pkg_resources`) + * Needed for :mod:`~pandas.io.gbq` (specifically, it utilizes `pkg_resources`) * `httplib2 `__ - * Needed for :mod:`~pandas.io.gbq` + * Needed for :mod:`~pandas.io.gbq` * One of the following combinations of libraries is needed to use the top-level :func:`~pandas.io.html.read_html` function: diff --git a/doc/source/io.rst b/doc/source/io.rst index 85a7f80696331..38a8d4d05b807 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -3610,7 +3610,7 @@ below and the SQLAlchemy `documentation ` - - The default for ``to_datetime`` will now be to ``raise`` when presented with unparseable formats, - previously this would return the original input, see :ref:`here ` - - The default for ``dropna`` in ``HDFStore`` has changed to ``False``, to store by default all rows even - if they are all ``NaN``, see :ref:`here ` - - Support for ``Series.dt.strftime`` to generate formatted strings for datetime-likes, see :ref:`here ` - - Development installed versions of pandas will now have ``PEP440`` compliant version strings (:issue:`9518`) +- Release the Global Interpreter Lock (GIL) on some cython operations, see :ref:`here ` +- The default for ``to_datetime`` will now be to ``raise`` when presented with unparseable formats, + previously this would return the original input, see :ref:`here ` +- The default for ``dropna`` in ``HDFStore`` has changed to ``False``, to store by default all rows even + if they are all ``NaN``, see :ref:`here ` +- Support for ``Series.dt.strftime`` to generate formatted strings for datetime-likes, see :ref:`here ` +- Development installed versions of pandas will now have ``PEP440`` compliant version strings (:issue:`9518`) Check the :ref:`API Changes ` and :ref:`deprecations ` before updating. @@ -448,6 +448,7 @@ from ``7``. .. ipython:: python :suppress: + pd.set_option('display.precision', 6) @@ -481,9 +482,9 @@ Series with a ``CategoricalIndex`` (:issue:`10704`) - ``groupby`` using ``Categorical`` follows the same rule as ``Categorical.unique`` described above (:issue:`10508`) - ``NaT``'s methods now either raise ``ValueError``, or return ``np.nan`` or ``NaT`` (:issue:`9513`) - =============================== ============================================================== + =============================== =============================================================== Behavior Methods - =============================== ============================================================== + =============================== =============================================================== ``return np.nan`` ``weekday``, ``isoweekday`` ``return NaT`` ``date``, ``now``, ``replace``, ``to_datetime``, ``today`` ``return np.datetime64('NaT')`` ``to_datetime64`` (unchanged)