Skip to content

Commit 8d21a92

Browse files
author
georg.brandl
committed
Remove trailing whitespace.
git-svn-id: http://svn.python.org/projects/python/trunk@68220 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 12481e2 commit 8d21a92

149 files changed

Lines changed: 771 additions & 771 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Doc/c-api/buffer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ returning data from the target object.
3030

3131
.. index:: single: PyBufferProcs
3232

33-
More information on the buffer interface is provided in the section
33+
More information on the buffer interface is provided in the section
3434
:ref:`buffer-structs`, under the description for :ctype:`PyBufferProcs`.
3535

3636
A "buffer object" is defined in the :file:`bufferobject.h` header (included by

Doc/c-api/conversion.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The following functions provide locale-independent string to number conversions.
7777

7878
.. versionadded:: 2.4
7979

80-
80+
8181
.. cfunction:: double PyOS_ascii_atof(const char *nptr)
8282

8383
Convert a string to a :ctype:`double` in a locale-independent way.
@@ -86,7 +86,7 @@ The following functions provide locale-independent string to number conversions.
8686

8787
See the Unix man page :manpage:`atof(2)` for details.
8888

89-
89+
9090
.. cfunction:: char * PyOS_stricmp(char *s1, char *s2)
9191

9292
Case insensitive comparison of strings. The function works almost

Doc/c-api/init.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ in previous versions.
902902

903903
Return a tuple of function call counts. There are constants defined for the
904904
positions within the tuple:
905-
905+
906906
+-------------------------------+-------+
907907
| Name | Value |
908908
+===============================+=======+
@@ -928,7 +928,7 @@ in previous versions.
928928
+-------------------------------+-------+
929929
| :const:`PCALL_POP` | 10 |
930930
+-------------------------------+-------+
931-
931+
932932
:const:`PCALL_FAST_FUNCTION` means no argument tuple needs to be created.
933933
:const:`PCALL_FASTER_FUNCTION` means that the fast-path frame setup code is used.
934934

Doc/c-api/long.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Long Integer Objects
126126

127127
Return a C :ctype:`long` representation of the contents of *pylong*. If
128128
*pylong* is greater than :const:`LONG_MAX`, an :exc:`OverflowError` is raised
129-
and ``-1`` will be returned.
129+
and ``-1`` will be returned.
130130

131131

132132
.. cfunction:: Py_ssize_t PyLong_AsSsize_t(PyObject *pylong)

Doc/c-api/module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ There are only a few functions special to module objects.
106106

107107
.. cfunction:: int PyModule_AddIntMacro(PyObject *module, macro)
108108

109-
Add an int constant to *module*. The name and the value are taken from
109+
Add an int constant to *module*. The name and the value are taken from
110110
*macro*. For example ``PyModule_AddConstant(module, AF_INET)`` adds the int
111111
constant *AF_INET* with the value of *AF_INET* to *module*.
112112
Return ``-1`` on error, ``0`` on success.

Doc/c-api/reflection.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Reflection
1515

1616
Return a dictionary of the local variables in the current execution frame,
1717
or *NULL* if no frame is currently executing.
18-
18+
1919

2020
.. cfunction:: PyObject* PyEval_GetGlobals()
2121

Doc/c-api/sequence.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ Sequence Protocol
143143

144144
Return the underlying array of PyObject pointers. Assumes that *o* was returned
145145
by :cfunc:`PySequence_Fast` and *o* is not *NULL*.
146-
146+
147147
Note, if a list gets resized, the reallocation may relocate the items array.
148-
So, only use the underlying array pointer in contexts where the sequence
148+
So, only use the underlying array pointer in contexts where the sequence
149149
cannot change.
150150

151151
.. versionadded:: 2.4

Doc/c-api/set.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ the constructor functions work with any iterable Python object.
101101

102102
.. versionchanged:: 2.6
103103
Now guaranteed to return a brand-new :class:`frozenset`. Formerly,
104-
frozensets of zero-length were a singleton. This got in the way of
104+
frozensets of zero-length were a singleton. This got in the way of
105105
building-up new frozensets with :meth:`PySet_Add`.
106106

107107
The following functions and macros are available for instances of :class:`set`

Doc/c-api/structures.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ definition with the same method name.
265265
read-only access. Using :cmacro:`T_STRING` for :attr:`type` implies
266266
:cmacro:`READONLY`. Only :cmacro:`T_OBJECT` and :cmacro:`T_OBJECT_EX` can be
267267
deleted. (They are set to *NULL*).
268-
268+
269269

270270

271271
.. cfunction:: PyObject* Py_FindMethod(PyMethodDef table[], PyObject *ob, char *name)

Doc/distutils/apiref.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ setup script). Indirectly provides the :class:`distutils.dist.Distribution` and
104104
| *package_dir* | A mapping of package to | a dictionary |
105105
| | directory names | |
106106
+--------------------+--------------------------------+-------------------------------------------------------------+
107-
107+
108108

109109

110110
.. function:: run_setup(script_name[, script_args=None, stop_after='run'])
@@ -755,7 +755,7 @@ This module provides the following functions.
755755
standard output, otherwise do nothing.
756756

757757
.. % \subsection{Compiler-specific modules}
758-
.. %
758+
.. %
759759
.. % The following modules implement concrete subclasses of the abstract
760760
.. % \class{CCompiler} class. They should not be instantiated directly, but should
761761
.. % be created using \function{distutils.ccompiler.new_compiler()} factory
@@ -859,7 +859,7 @@ Contains :class:`MWerksCompiler`, an implementation of the abstract
859859
Macintosh. Needs work to support CW on Windows or Mac OS X.
860860

861861
.. % \subsection{Utility modules}
862-
.. %
862+
.. %
863863
.. % The following modules all provide general utility functions. They haven't
864864
.. % all been documented yet.
865865
@@ -1110,13 +1110,13 @@ other utility module.
11101110

11111111
For MacOS X systems the OS version reflects the minimal version on which
11121112
binaries will run (that is, the value of ``MACOSX_DEPLOYMENT_TARGET``
1113-
during the build of Python), not the OS version of the current system.
1113+
during the build of Python), not the OS version of the current system.
11141114

11151115
For universal binary builds on MacOS X the architecture value reflects
11161116
the univeral binary status instead of the architecture of the current
1117-
processor. For 32-bit universal binaries the architecture is ``fat``,
1118-
for 64-bit universal binaries the architecture is ``fat64``, and
1119-
for 4-way universal binaries the architecture is ``universal``.
1117+
processor. For 32-bit universal binaries the architecture is ``fat``,
1118+
for 64-bit universal binaries the architecture is ``fat64``, and
1119+
for 4-way universal binaries the architecture is ``universal``.
11201120

11211121
Examples of returned values on MacOS X:
11221122

@@ -1693,7 +1693,7 @@ lines, and joining lines with backslashes.
16931693

16941694
.. % todo
16951695
.. % \section{Distutils Commands}
1696-
.. %
1696+
.. %
16971697
.. % This part of Distutils implements the various Distutils commands, such
16981698
.. % as \code{build}, \code{install} \&c. Each command is implemented as a
16991699
.. % separate module, with the command name as the name of the module.

0 commit comments

Comments
 (0)