Skip to content

Commit 852ec18

Browse files
authored
Docs: remove unneeded author attributions (#145002)
These directives are not maintained and misleadingly indicate individual rather than community ownership. See python/docs-community#180 for discussion, and python/devguide#1740 for an update to the devguide. Also ensured that everyone is in the Misc/ACKS file.
1 parent 4141f0a commit 852ec18

File tree

157 files changed

+12
-515
lines changed

Some content is hidden

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

157 files changed

+12
-515
lines changed

Doc/c-api/buffer.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@
1010
Buffer Protocol
1111
---------------
1212

13-
.. sectionauthor:: Greg Stein <gstein@lyra.org>
14-
.. sectionauthor:: Benjamin Peterson
15-
.. sectionauthor:: Stefan Krah
16-
17-
1813
Certain objects available in Python wrap access to an underlying memory
1914
array or *buffer*. Such objects include the built-in :class:`bytes` and
2015
:class:`bytearray`, and some extension types like :class:`array.array`.

Doc/c-api/code.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
Code Objects
88
------------
99

10-
.. sectionauthor:: Jeffrey Yasskin <jyasskin@gmail.com>
11-
1210
Code objects are a low-level detail of the CPython implementation.
1311
Each one represents a chunk of executable code that hasn't yet been
1412
bound into a function.

Doc/c-api/init.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1916,9 +1916,6 @@ pointer and a void pointer argument.
19161916
Profiling and Tracing
19171917
=====================
19181918
1919-
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
1920-
1921-
19221919
The Python interpreter provides some low-level support for attaching profiling
19231920
and execution tracing facilities. These are used for profiling, debugging, and
19241921
coverage analysis tools.
@@ -2148,9 +2145,6 @@ Reference tracing
21482145
Advanced Debugger Support
21492146
=========================
21502147
2151-
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
2152-
2153-
21542148
These functions are only intended to be used by advanced debugging tools.
21552149
21562150
@@ -2187,8 +2181,6 @@ These functions are only intended to be used by advanced debugging tools.
21872181
Thread Local Storage Support
21882182
============================
21892183
2190-
.. sectionauthor:: Masayuki Yamamoto <ma3yuki.8mamo10@gmail.com>
2191-
21922184
The Python interpreter provides low-level support for thread-local storage
21932185
(TLS) which wraps the underlying native TLS implementation to support the
21942186
Python-level thread local storage API (:class:`threading.local`). The

Doc/c-api/memory.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
Memory Management
88
*****************
99

10-
.. sectionauthor:: Vladimir Marangozov <Vladimir.Marangozov@inrialpes.fr>
11-
12-
13-
1410
.. _memoryoverview:
1511

1612
Overview

Doc/c-api/set.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
Set Objects
66
-----------
77

8-
.. sectionauthor:: Raymond D. Hettinger <python@rcn.com>
9-
10-
118
.. index::
129
pair: object; set
1310
pair: object; frozenset

Doc/c-api/typeobj.rst

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2632,9 +2632,6 @@ This is done by filling a :c:type:`PyType_Spec` structure and calling
26322632
Number Object Structures
26332633
------------------------
26342634

2635-
.. sectionauthor:: Amaury Forgeot d'Arc
2636-
2637-
26382635
.. c:type:: PyNumberMethods
26392636
26402637
This structure holds pointers to the functions which an object uses to
@@ -2852,9 +2849,6 @@ Number Object Structures
28522849
Mapping Object Structures
28532850
-------------------------
28542851

2855-
.. sectionauthor:: Amaury Forgeot d'Arc
2856-
2857-
28582852
.. c:type:: PyMappingMethods
28592853
28602854
This structure holds pointers to the functions which an object uses to
@@ -2895,9 +2889,6 @@ Mapping Object Structures
28952889
Sequence Object Structures
28962890
--------------------------
28972891

2898-
.. sectionauthor:: Amaury Forgeot d'Arc
2899-
2900-
29012892
.. c:type:: PySequenceMethods
29022893
29032894
This structure holds pointers to the functions which an object uses to
@@ -2991,10 +2982,6 @@ Sequence Object Structures
29912982
Buffer Object Structures
29922983
------------------------
29932984

2994-
.. sectionauthor:: Greg J. Stein <greg@lyra.org>
2995-
.. sectionauthor:: Benjamin Peterson
2996-
.. sectionauthor:: Stefan Krah
2997-
29982985
.. c:type:: PyBufferProcs
29992986
30002987
This structure holds pointers to the functions required by the
@@ -3090,8 +3077,6 @@ Buffer Object Structures
30903077
Async Object Structures
30913078
-----------------------
30923079

3093-
.. sectionauthor:: Yury Selivanov <yselivanov@sprymix.com>
3094-
30953080
.. versionadded:: 3.5
30963081

30973082
.. c:type:: PyAsyncMethods

Doc/c-api/unicode.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
Unicode Objects and Codecs
66
--------------------------
77

8-
.. sectionauthor:: Marc-André Lemburg <mal@lemburg.com>
9-
.. sectionauthor:: Georg Brandl <georg@python.org>
10-
118
Unicode Objects
129
^^^^^^^^^^^^^^^
1310

Doc/extending/extending.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -903,9 +903,6 @@ define this symbol).
903903
Providing a C API for an Extension Module
904904
=========================================
905905

906-
.. sectionauthor:: Konrad Hinsen <hinsen@cnrs-orleans.fr>
907-
908-
909906
Many extension modules just provide new functions and types to be used from
910907
Python, but sometimes the code in an extension module can be useful for other
911908
extension modules. For example, an extension module could implement a type

Doc/extending/newtypes_tutorial.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@
66
Defining Extension Types: Tutorial
77
**********************************
88

9-
.. sectionauthor:: Michael Hudson <mwh@python.net>
10-
.. sectionauthor:: Dave Kuhlman <dkuhlman@rexx.com>
11-
.. sectionauthor:: Jim Fulton <jim@zope.com>
12-
13-
149
Python allows the writer of a C extension module to define new types that
1510
can be manipulated from Python code, much like the built-in :class:`str`
1611
and :class:`list` types. The code for all extension types follows a

Doc/extending/windows.rst

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ things manually, it may be instructive to study the project file for the
4747
Differences Between Unix and Windows
4848
====================================
4949

50-
.. sectionauthor:: Chris Phoenix <cphoenix@best.com>
51-
52-
5350
Unix and Windows use completely different paradigms for run-time loading of
5451
code. Before you try to build a module that can be dynamically loaded, be aware
5552
of how your system works.
@@ -109,9 +106,6 @@ separate copy.
109106
Using DLLs in Practice
110107
======================
111108

112-
.. sectionauthor:: Chris Phoenix <cphoenix@best.com>
113-
114-
115109
Windows Python is built in Microsoft Visual C++; using other compilers may or
116110
may not work. The rest of this section is MSVC++ specific.
117111

0 commit comments

Comments
 (0)