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
Copy file name to clipboardExpand all lines: doc/source/development/debugging_extensions.rst
+10
Original file line number
Diff line number
Diff line change
@@ -119,3 +119,13 @@ Note that code execution under valgrind will take much longer than usual. While
119
119
.. note::
120
120
121
121
For best results, you should run use a Python installation configured with Valgrind support (--with-valgrind)
122
+
123
+
124
+
Easier code navigation
125
+
======================
126
+
127
+
Generating a ``compile_commands.json`` file may make it easier to navigate the C extensions, as this allows your code editor to list references, jump to definitions, etc... To make this work with setuptools you can use `Bear <https://github.com/rizsotto/Bear>`_.
Copy file name to clipboardExpand all lines: doc/source/user_guide/basics.rst
+47-19
Original file line number
Diff line number
Diff line change
@@ -827,20 +827,54 @@ In this case, provide ``pipe`` with a tuple of ``(callable, data_keyword)``.
827
827
828
828
For example, we can fit a regression using statsmodels. Their API expects a formula first and a ``DataFrame`` as the second argument, ``data``. We pass in the function, keyword pair ``(sm.ols, 'data')`` to ``pipe``:
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.5.3.rst
+2-1
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,8 @@ Fixed regressions
27
27
Bug fixes
28
28
~~~~~~~~~
29
29
- Bug in :meth:`.Styler.to_excel` leading to error when unrecognized ``border-style`` (e.g. ``"hair"``) provided to Excel writers (:issue:`48649`)
30
+
- Bug when chaining several :meth:`.Styler.concat` calls, only the last styler was concatenated (:issue:`49207`)
31
+
- Fixed bug when instantiating a :class:`DataFrame` subclass inheriting from ``typing.Generic`` that triggered a ``UserWarning`` on python 3.11 (:issue:`49649`)
0 commit comments