Skip to content

Commit 979f96a

Browse files
committed
Captialize configure.rst titles
1 parent a4cea9f commit 979f96a

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Doc/using/configure.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ See also :pep:`7` "Style Guide for C Code" and :pep:`11` "CPython platform
6060
support".
6161

6262

63-
Generated files
63+
Generated Files
6464
===============
6565

6666
To reduce build dependencies, Python source code contains multiple generated
@@ -492,7 +492,7 @@ Install Options
492492
.. versionadded:: 3.6
493493

494494

495-
Performance options
495+
Performance Options
496496
-------------------
497497

498498
Configuring Python using ``--enable-optimizations --with-lto`` (PGO + LTO) is
@@ -656,7 +656,7 @@ See also the :ref:`Python Development Mode <devmode>` and the
656656
:option:`--with-trace-refs` option).
657657

658658

659-
Debug options
659+
Debug Options
660660
-------------
661661

662662
.. cmdoption:: --with-pydebug
@@ -731,7 +731,7 @@ Debug options
731731
.. versionadded:: 3.6
732732

733733

734-
Linker options
734+
Linker Options
735735
--------------
736736

737737
.. cmdoption:: --enable-shared
@@ -746,7 +746,7 @@ Linker options
746746
.. versionadded:: 3.10
747747

748748

749-
Libraries options
749+
Libraries Options
750750
-----------------
751751

752752
.. cmdoption:: --with-libs='lib1 ...'
@@ -941,7 +941,7 @@ Cross compiling example::
941941
Python Build System
942942
===================
943943

944-
Main files of the build system
944+
Main Files Of The Build System
945945
------------------------------
946946

947947
* :file:`configure.ac` => :file:`configure`;
@@ -950,7 +950,7 @@ Main files of the build system
950950
* :file:`Modules/Setup`: C extensions built by the Makefile using
951951
:file:`Module/makesetup` shell script;
952952

953-
Main build steps
953+
Main Build Steps
954954
----------------
955955

956956
* C files (``.c``) are built as object files (``.o``).
@@ -959,7 +959,7 @@ Main build steps
959959
final ``python`` program.
960960
* C extensions are built by the Makefile (see :file:`Modules/Setup`).
961961

962-
Main Makefile targets
962+
Main Makefile Targets
963963
---------------------
964964

965965
* ``make``: Build Python with the standard library.
@@ -980,7 +980,7 @@ Main Makefile targets
980980
* ``make distclean``: Same than ``make clean``, but remove also files created
981981
by the configure script.
982982

983-
C extensions
983+
C Extensions
984984
------------
985985

986986
Some C extensions are built as built-in modules, like the ``sys`` module.
@@ -1021,13 +1021,13 @@ built as a shared library, its ``PyInit_xxx()`` function is not exported,
10211021
causing an :exc:`ImportError` on import.
10221022

10231023

1024-
Compiler and linker flags
1024+
Compiler and Linker Flags
10251025
=========================
10261026

10271027
Options set by the ``./configure`` script and environment variables and used by
10281028
``Makefile``.
10291029

1030-
Preprocessor flags
1030+
Preprocessor Flags
10311031
------------------
10321032

10331033
.. envvar:: CONFIGURE_CPPFLAGS
@@ -1057,7 +1057,7 @@ Preprocessor flags
10571057

10581058
.. versionadded:: 3.2
10591059

1060-
Compiler flags
1060+
Compiler Flags
10611061
--------------
10621062

10631063
.. envvar:: CC
@@ -1187,7 +1187,7 @@ Compiler flags
11871187
Default: empty string (not used).
11881188

11891189

1190-
Linker flags
1190+
Linker Flags
11911191
------------
11921192

11931193
.. envvar:: LINKCC

0 commit comments

Comments
 (0)