File tree Expand file tree Collapse file tree 4 files changed +0
-31
lines changed Expand file tree Collapse file tree 4 files changed +0
-31
lines changed Original file line number Diff line number Diff line change @@ -108,27 +108,3 @@ and we will process your request as soon as possible.
108
108
109
109
If you want to help the Documentation Team, you are always welcome. Just send
110
110
a mail to docs@python.org.
111
-
112
-
113
- Copyright notice
114
- ================
115
-
116
- The Python source is copyrighted, but you can freely use and copy it
117
- as long as you don't change or remove the copyright notice:
118
-
119
- ----------------------------------------------------------------------
120
- Copyright (c) 2000-2014 Python Software Foundation.
121
- All rights reserved.
122
-
123
- Copyright (c) 2000 BeOpen.com.
124
- All rights reserved.
125
-
126
- Copyright (c) 1995-2000 Corporation for National Research Initiatives.
127
- All rights reserved.
128
-
129
- Copyright (c) 1991-1995 Stichting Mathematisch Centrum.
130
- All rights reserved.
131
-
132
- See the file "license.rst" for information on usage and redistribution
133
- of this file, and for a DISCLAIMER OF ALL WARRANTIES.
134
- ----------------------------------------------------------------------
Original file line number Diff line number Diff line change 3
3
4
4
/* collections module implementation of a deque() datatype
5
5
Written and maintained by Raymond D. Hettinger <python@rcn.com>
6
- Copyright (c) 2004 Python Software Foundation.
7
- All rights reserved.
8
6
*/
9
7
10
8
/* The block length may be set to any number over 1. Larger numbers
Original file line number Diff line number Diff line change 4
4
5
5
/* Itertools module written and maintained
6
6
by Raymond D. Hettinger <python@rcn.com>
7
- Copyright (c) 2003-2013 Python Software Foundation.
8
- All rights reserved.
9
7
*/
10
8
11
9
Original file line number Diff line number Diff line change 2
2
/* set object implementation
3
3
Written and maintained by Raymond D. Hettinger <python@rcn.com>
4
4
Derived from Lib/sets.py and Objects/dictobject.c.
5
-
6
- Copyright (c) 2003-2008 Python Software Foundation.
7
- All rights reserved.
8
5
*/
9
6
10
7
#include "Python.h"
You can’t perform that action at this time.
0 commit comments