@@ -434,7 +434,7 @@ The utility script ``scripts/validate_docstrings.py`` can be used to get a csv
434
434
summary of the API documentation. And also validate common errors in the docstring
435
435
of a specific class, function or method. The summary also compares the list of
436
436
methods documented in ``doc/source/api.rst `` (which is used to generate
437
- the `API Reference <http ://pandas.pydata.org/pandas-docs/stable/api.html >`_ page)
437
+ the `API Reference <https ://pandas.pydata.org/pandas-docs/stable/api.html >`_ page)
438
438
and the actual public methods.
439
439
This will identify methods documented in ``doc/source/api.rst `` that are not actually
440
440
class methods, and existing methods that are not documented in ``doc/source/api.rst ``.
@@ -569,8 +569,7 @@ do not make sudden changes to the code that could have the potential to break
569
569
a lot of user code as a result, that is, we need it to be as *backwards compatible *
570
570
as possible to avoid mass breakages.
571
571
572
- Additional standards are outlined on the `code style wiki
573
- page <https://github.com/pandas-dev/pandas/wiki/Code-Style-and-Conventions> `_.
572
+ Additional standards are outlined on the `pandas code style guide <code_style >`_
574
573
575
574
Optional dependencies
576
575
---------------------
@@ -957,7 +956,7 @@ inspiration. If your test requires working with files or
957
956
network connectivity, there is more information on the `testing page
958
957
<https://github.com/pandas-dev/pandas/wiki/Testing> `_ of the wiki.
959
958
960
- The ``pandas.util.testing `` module has many special ``assert `` functions that
959
+ The ``pandas._testing `` module has many special ``assert `` functions that
961
960
make it easier to make statements about whether Series or DataFrame objects are
962
961
equivalent. The easiest way to verify that your code is correct is to
963
962
explicitly construct the result you expect, then compare the actual result to
@@ -1143,7 +1142,7 @@ If your change involves checking that a warning is actually emitted, use
1143
1142
1144
1143
.. code-block :: python
1145
1144
1146
- import pandas.util.testing as tm
1145
+ import pandas._testing as tm
1147
1146
1148
1147
1149
1148
df = pd.DataFrame()
0 commit comments