Skip to content

Commit 479b5dc

Browse files
authored
DOC: Making pandas always lowercase (#57464)
1 parent f8a7fe4 commit 479b5dc

13 files changed

+16
-16
lines changed

doc/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@
431431
"index",
432432
"pandas.tex",
433433
"pandas: powerful Python data analysis toolkit",
434-
"Wes McKinney and the Pandas Development Team",
434+
"Wes McKinney and the pandas Development Team",
435435
"manual",
436436
)
437437
]

doc/source/development/contributing_codebase.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ Testing type hints in code using pandas
253253

254254
.. warning::
255255

256-
* Pandas is not yet a py.typed library (:pep:`561`)!
256+
* pandas is not yet a py.typed library (:pep:`561`)!
257257
The primary purpose of locally declaring pandas as a py.typed library is to test and
258258
improve the pandas-builtin type annotations.
259259

doc/source/development/contributing_documentation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ experts. If something in the docs doesn't make sense to you, updating the
1414
relevant section after you figure it out is a great way to ensure it will help
1515
the next person. Please visit the `issues page <https://github.com/pandas-dev/pandas/issues?page=1&q=is%3Aopen+sort%3Aupdated-desc+label%3ADocs>`__
1616
for a full list of issues that are currently open regarding the
17-
Pandas documentation.
17+
pandas documentation.
1818

1919

2020

doc/source/development/debugging_extensions.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Debugging C extensions
77
======================
88

9-
Pandas uses Cython and C/C++ `extension modules <https://docs.python.org/3/extending/extending.html>`_ to optimize performance. Unfortunately, the standard Python debugger does not allow you to step into these extensions. Cython extensions can be debugged with the `Cython debugger <https://docs.cython.org/en/latest/src/userguide/debugging.html>`_ and C/C++ extensions can be debugged using the tools shipped with your platform's compiler.
9+
pandas uses Cython and C/C++ `extension modules <https://docs.python.org/3/extending/extending.html>`_ to optimize performance. Unfortunately, the standard Python debugger does not allow you to step into these extensions. Cython extensions can be debugged with the `Cython debugger <https://docs.cython.org/en/latest/src/userguide/debugging.html>`_ and C/C++ extensions can be debugged using the tools shipped with your platform's compiler.
1010

1111
For Python developers with limited or no C/C++ experience this can seem a daunting task. Core developer Will Ayd has written a 3 part blog series to help guide you from the standard Python debugger into these other tools:
1212

doc/source/development/maintaining.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ Release
430430
git checkout <branch>
431431
git pull --ff-only upstream <branch>
432432
git clean -xdf
433-
git commit --allow-empty --author="Pandas Development Team <[email protected]>" -m "RLS: <version>"
433+
git commit --allow-empty --author="pandas Development Team <[email protected]>" -m "RLS: <version>"
434434
git tag -a v<version> -m "Version <version>" # NOTE that the tag is v1.5.2 with "v" not 1.5.2
435435
git push upstream <branch> --follow-tags
436436

@@ -460,7 +460,7 @@ which will be triggered when the tag is pushed.
460460
4. Create a `new GitHub release <https://github.com/pandas-dev/pandas/releases/new>`_:
461461

462462
- Tag: ``<version>``
463-
- Title: ``Pandas <version>``
463+
- Title: ``pandas <version>``
464464
- Description: Copy the description of the last release of the same kind (release candidate, major/minor or patch release)
465465
- Files: ``pandas-<version>.tar.gz`` source distribution just generated
466466
- Set as a pre-release: Only check for a release candidate

doc/source/user_guide/10min.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Customarily, we import as follows:
1919
Basic data structures in pandas
2020
-------------------------------
2121

22-
Pandas provides two types of classes for handling data:
22+
pandas provides two types of classes for handling data:
2323

2424
1. :class:`Series`: a one-dimensional labeled array holding data of any type
2525
such as integers, strings, Python objects etc.

doc/source/user_guide/io.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1044,7 +1044,7 @@ Writing CSVs to binary file objects
10441044

10451045
``df.to_csv(..., mode="wb")`` allows writing a CSV to a file object
10461046
opened binary mode. In most cases, it is not necessary to specify
1047-
``mode`` as Pandas will auto-detect whether the file object is
1047+
``mode`` as pandas will auto-detect whether the file object is
10481048
opened in text or binary mode.
10491049

10501050
.. ipython:: python
@@ -1604,7 +1604,7 @@ Specifying ``iterator=True`` will also return the ``TextFileReader`` object:
16041604
Specifying the parser engine
16051605
''''''''''''''''''''''''''''
16061606

1607-
Pandas currently supports three engines, the C engine, the python engine, and an experimental
1607+
pandas currently supports three engines, the C engine, the python engine, and an experimental
16081608
pyarrow engine (requires the ``pyarrow`` package). In general, the pyarrow engine is fastest
16091609
on larger workloads and is equivalent in speed to the C engine on most other workloads.
16101610
The python engine tends to be slower than the pyarrow and C engines on most workloads. However,
@@ -3910,7 +3910,7 @@ The look and feel of Excel worksheets created from pandas can be modified using
39103910

39113911
.. note::
39123912

3913-
As of Pandas 3.0, by default spreadsheets created with the ``to_excel`` method
3913+
As of pandas 3.0, by default spreadsheets created with the ``to_excel`` method
39143914
will not contain any styling. Users wishing to bold text, add bordered styles,
39153915
etc in a worksheet output by ``to_excel`` can do so by using :meth:`Styler.to_excel`
39163916
to create styled excel files. For documentation on styling spreadsheets, see

doc/source/whatsnew/v0.11.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Data have had quite a number of additions, and Dtype support is now full-fledged
1212
There are also a number of important API changes that long-time pandas users should
1313
pay close attention to.
1414

15-
There is a new section in the documentation, :ref:`10 Minutes to Pandas <10min>`,
15+
There is a new section in the documentation, :ref:`10 Minutes to pandas <10min>`,
1616
primarily geared to new users.
1717

1818
There is a new section in the documentation, :ref:`Cookbook <cookbook>`, a collection

doc/source/whatsnew/v1.3.1.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ including other versions of pandas.
1414

1515
Fixed regressions
1616
~~~~~~~~~~~~~~~~~
17-
- Pandas could not be built on PyPy (:issue:`42355`)
17+
- pandas could not be built on PyPy (:issue:`42355`)
1818
- :class:`DataFrame` constructed with an older version of pandas could not be unpickled (:issue:`42345`)
1919
- Performance regression in constructing a :class:`DataFrame` from a dictionary of dictionaries (:issue:`42248`)
2020
- Fixed regression in :meth:`DataFrame.agg` dropping values when the DataFrame had an Extension Array dtype, a duplicate index, and ``axis=1`` (:issue:`42380`)

doc/source/whatsnew/v1.4.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ Deprecated Int64Index, UInt64Index & Float64Index
607607

608608
:class:`Int64Index`, :class:`UInt64Index` and :class:`Float64Index` have been
609609
deprecated in favor of the base :class:`Index` class and will be removed in
610-
Pandas 2.0 (:issue:`43028`).
610+
pandas 2.0 (:issue:`43028`).
611611

612612
For constructing a numeric index, you can use the base :class:`Index` class
613613
instead specifying the data type (which will also work on older pandas

doc/source/whatsnew/v1.5.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ We recommend installing the latest version of PyArrow to access the most recentl
6363
DataFrame interchange protocol implementation
6464
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6565

66-
Pandas now implement the DataFrame interchange API spec.
66+
pandas now implement the DataFrame interchange API spec.
6767
See the full details on the API at https://data-apis.org/dataframe-protocol/latest/index.html
6868

6969
The protocol consists of two parts:

doc/source/whatsnew/v2.0.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ can it now take all numpy numeric dtypes, i.e.
5757
pd.Index([1, 2, 3], dtype=np.uint16)
5858
pd.Index([1, 2, 3], dtype=np.float32)
5959
60-
The ability for :class:`Index` to hold the numpy numeric dtypes has meant some changes in Pandas
60+
The ability for :class:`Index` to hold the numpy numeric dtypes has meant some changes in pandas
6161
functionality. In particular, operations that previously were forced to create 64-bit indexes,
6262
can now create indexes with lower bit sizes, e.g. 32-bit indexes.
6363

doc/source/whatsnew/v2.1.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ DataFrame reductions preserve extension dtypes
6767

6868
In previous versions of pandas, the results of DataFrame reductions
6969
(:meth:`DataFrame.sum` :meth:`DataFrame.mean` etc.) had NumPy dtypes, even when the DataFrames
70-
were of extension dtypes. Pandas can now keep the dtypes when doing reductions over DataFrame
70+
were of extension dtypes. pandas can now keep the dtypes when doing reductions over DataFrame
7171
columns with a common dtype (:issue:`52788`).
7272

7373
*Old Behavior*

0 commit comments

Comments
 (0)