Skip to content

Commit 043b203

Browse files
committed
Sentence case for headers
1 parent 02ad240 commit 043b203

5 files changed

Lines changed: 20 additions & 20 deletions

File tree

Doc/library/csv.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:mod:`!csv` --- CSV File Reading and Writing
1+
:mod:`!csv` --- CSV file reading and writing
22
============================================
33

44
.. module:: csv
@@ -42,7 +42,7 @@ using the :class:`DictReader` and :class:`DictWriter` classes.
4242

4343
.. _csv-contents:
4444

45-
Module Contents
45+
Module contents
4646
---------------
4747

4848
The :mod:`!csv` module defines the following functions:
@@ -451,7 +451,7 @@ The :mod:`!csv` module defines the following exception:
451451

452452
.. _csv-fmt-params:
453453

454-
Dialects and Formatting Parameters
454+
Dialects and formatting parameters
455455
----------------------------------
456456

457457
To make it easier to specify the format of input and output records, specific
@@ -557,7 +557,7 @@ with the specified formatting parameters replaced.
557557

558558
.. _reader-objects:
559559

560-
Reader Objects
560+
Reader objects
561561
--------------
562562

563563
Reader objects (:class:`DictReader` instances and objects returned by the
@@ -594,7 +594,7 @@ DictReader objects have the following public attribute:
594594

595595

596596

597-
Writer Objects
597+
Writer objects
598598
--------------
599599

600600
:class:`writer` objects (:class:`DictWriter` instances and objects returned by

Doc/library/functions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. XXX document all delegations to __special__ methods
22
.. _built-in-funcs:
33

4-
Built-in Functions
4+
Built-in functions
55
==================
66

77
The Python interpreter has a number of functions and types built into it that

Doc/library/io.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ The raw stream API is described in detail in the docs of :class:`RawIOBase`.
115115

116116
.. _io-text-encoding:
117117

118-
Text Encoding
118+
Text encoding
119119
-------------
120120

121121
The default encoding of :class:`TextIOWrapper` and :func:`open` is UTF-8.
@@ -152,7 +152,7 @@ please consider using UTF-8 by default (i.e. ``encoding="utf-8"``) for
152152
new APIs.
153153

154154

155-
High-level Module Interface
155+
High-level module interface
156156
---------------------------
157157

158158
.. data:: DEFAULT_BUFFER_SIZE
@@ -302,7 +302,7 @@ ABC Inherits Stub Methods Mixin M
302302
========================= ================== ======================== ==================================================
303303

304304

305-
I/O Base Classes
305+
I/O base classes
306306
^^^^^^^^^^^^^^^^
307307

308308
.. class:: IOBase
@@ -647,7 +647,7 @@ I/O Base Classes
647647
so the implementation should only access *b* during the method call.
648648

649649

650-
Raw File I/O
650+
Raw file I/O
651651
^^^^^^^^^^^^
652652

653653
.. class:: FileIO(name, mode='r', closefd=True, opener=None)
@@ -715,7 +715,7 @@ Raw File I/O
715715
given in the constructor.
716716

717717

718-
Buffered Streams
718+
Buffered streams
719719
^^^^^^^^^^^^^^^^
720720

721721
Buffered I/O streams provide a higher-level interface to an I/O device
@@ -1174,7 +1174,7 @@ Text I/O
11741174
It inherits from :class:`codecs.IncrementalDecoder`.
11751175

11761176

1177-
Static Typing
1177+
Static typing
11781178
-------------
11791179

11801180
The following protocols can be used for annotating function and method

Doc/tutorial/inputoutput.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _tut-io:
22

33
****************
4-
Input and Output
4+
Input and output
55
****************
66

77
There are several ways to present the output of a program; data can be printed
@@ -11,7 +11,7 @@ discuss some of the possibilities.
1111

1212
.. _tut-formatting:
1313

14-
Fancier Output Formatting
14+
Fancier output formatting
1515
=========================
1616

1717
So far we've encountered two ways of writing values: *expression statements* and
@@ -111,7 +111,7 @@ This syntax is easy to use, although it offers much less control for formatting.
111111

112112
.. _tut-f-strings:
113113

114-
Formatted String Literals
114+
Formatted string literals
115115
-------------------------
116116

117117
:ref:`Formatted string literals <f-strings>` (also called f-strings for
@@ -163,7 +163,7 @@ the reference guide for the :ref:`formatspec`.
163163

164164
.. _tut-string-format:
165165

166-
The String format() Method
166+
The string format() method
167167
--------------------------
168168

169169
Basic usage of the :meth:`str.format` method looks like this::
@@ -240,7 +240,7 @@ For a complete overview of string formatting with :meth:`str.format`, see
240240
:ref:`formatstrings`.
241241

242242

243-
Manual String Formatting
243+
Manual string formatting
244244
------------------------
245245

246246
Here's the same table of squares and cubes, formatted manually::
@@ -303,7 +303,7 @@ More information can be found in the :ref:`old-string-formatting` section.
303303

304304
.. _tut-files:
305305

306-
Reading and Writing Files
306+
Reading and writing files
307307
=========================
308308

309309
.. index::
@@ -385,7 +385,7 @@ automatically fail. ::
385385

386386
.. _tut-filemethods:
387387

388-
Methods of File Objects
388+
Methods of file objects
389389
-----------------------
390390

391391
The rest of the examples in this section will assume that a file object called

Doc/using/windows.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ checking for that feed.
943943
}
944944
945945
946-
Proxy Settings
946+
Proxy settings
947947
--------------
948948

949949
.. versionadded:: 26.4

0 commit comments

Comments
 (0)