File tree Expand file tree Collapse file tree 10 files changed +28
-30
lines changed Expand file tree Collapse file tree 10 files changed +28
-30
lines changed Original file line number Diff line number Diff line change 25
25
# UserList based on CPython.
26
26
# Licensed under the Python Software Foundation License Version 2.
27
27
# Copyright © 2001-2020 Python Software Foundation. All rights reserved.
28
- # Copyright © 2000 BeOpen.com . All rights reserved.
29
- # Copyright © 1995-2000 Corporation for National Research Initiatives . All rights reserved.
30
- # Copyright © 1991-1995 Stichting Mathematisch Centrum . All rights reserved.
28
+ # Copyright © 2000 BeOpen.com. All rights reserved.
29
+ # Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
30
+ # Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
31
31
#
32
32
33
33
# stdlib
Original file line number Diff line number Diff line change 15
15
# Parts of the docstrings based on the Python 3.8.2 Documentation
16
16
# Licensed under the Python Software Foundation License Version 2.
17
17
# Copyright © 2001-2020 Python Software Foundation. All rights reserved.
18
- # Copyright © 2000 BeOpen.com . All rights reserved.
19
- # Copyright © 1995-2000 Corporation for National Research Initiatives . All rights reserved.
20
- # Copyright © 1991-1995 Stichting Mathematisch Centrum . All rights reserved.
18
+ # Copyright © 2000 BeOpen.com. All rights reserved.
19
+ # Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
20
+ # Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
21
21
#
22
22
# This program is free software; you can redistribute it and/or modify
23
23
# it under the terms of the GNU Lesser General Public License as published by
Original file line number Diff line number Diff line change 15
15
# Parts of the docstrings and the PathPlus class based on the Python 3.8.2 Documentation
16
16
# Licensed under the Python Software Foundation License Version 2.
17
17
# Copyright © 2001-2020 Python Software Foundation. All rights reserved.
18
- # Copyright © 2000 BeOpen.com . All rights reserved.
18
+ # Copyright © 2000 BeOpen.com. All rights reserved.
19
19
# Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
20
20
# Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
21
21
#
Original file line number Diff line number Diff line change 10
10
# Parts of the docstrings based on the Python 3.8.2 Documentation
11
11
# Licensed under the Python Software Foundation License Version 2.
12
12
# Copyright © 2001-2020 Python Software Foundation. All rights reserved.
13
- # Copyright © 2000 BeOpen.com . All rights reserved.
14
- # Copyright © 1995-2000 Corporation for National Research Initiatives . All rights reserved.
15
- # Copyright © 1991-1995 Stichting Mathematisch Centrum . All rights reserved.
13
+ # Copyright © 2000 BeOpen.com. All rights reserved.
14
+ # Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
15
+ # Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
16
16
#
17
17
# This program is free software; you can redistribute it and/or modify
18
18
# it under the terms of the GNU Lesser General Public License as published by
Original file line number Diff line number Diff line change @@ -165,9 +165,9 @@ def loads(
165
165
# Backported from https://github.com/python/cpython/blob/master/Lib/types.py
166
166
# Licensed under the Python Software Foundation License Version 2.
167
167
# Copyright © 2001-2020 Python Software Foundation. All rights reserved.
168
- # Copyright © 2000 BeOpen.com . All rights reserved.
169
- # Copyright © 1995-2000 Corporation for National Research Initiatives . All rights reserved.
170
- # Copyright © 1991-1995 Stichting Mathematisch Centrum . All rights reserved.
168
+ # Copyright © 2000 BeOpen.com. All rights reserved.
169
+ # Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
170
+ # Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
171
171
172
172
WrapperDescriptorType = type (object .__init__ )
173
173
MethodWrapperType = type (object ().__str__ )
Original file line number Diff line number Diff line change 2
2
3
3
# Licensed under the Python Software Foundation License Version 2.
4
4
# Copyright © 2001-2020 Python Software Foundation. All rights reserved.
5
- # Copyright © 2000 BeOpen.com . All rights reserved.
6
- # Copyright © 1995-2000 Corporation for National Research Initiatives . All rights reserved.
7
- # Copyright © 1991-1995 Stichting Mathematisch Centrum . All rights reserved.
5
+ # Copyright © 2000 BeOpen.com. All rights reserved.
6
+ # Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
7
+ # Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
8
8
"""
9
9
Tests common to list and UserList.UserList
10
10
"""
Original file line number Diff line number Diff line change 1
1
# From https://raw.githubusercontent.com/python/cpython/master/Lib/test/seq_tests.py
2
2
# Licensed under the Python Software Foundation License Version 2.
3
3
# Copyright © 2001-2020 Python Software Foundation. All rights reserved.
4
- # Copyright © 2000 BeOpen.com . All rights reserved.
5
- # Copyright © 1995-2000 Corporation for National Research Initiatives . All rights reserved.
6
- # Copyright © 1991-1995 Stichting Mathematisch Centrum . All rights reserved.
4
+ # Copyright © 2000 BeOpen.com. All rights reserved.
5
+ # Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
6
+ # Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
7
7
"""
8
8
Tests common to tuple, list and UserList.UserList
9
9
"""
Original file line number Diff line number Diff line change 1
1
# From https://raw.githubusercontent.com/python/cpython/master/Lib/test/test_userlist.py
2
-
3
2
# Licensed under the Python Software Foundation License Version 2.
4
3
# Copyright © 2001-2020 Python Software Foundation. All rights reserved.
5
- # Copyright © 2000 BeOpen.com . All rights reserved.
6
- # Copyright © 1995-2000 Corporation for National Research Initiatives . All rights reserved.
7
- # Copyright © 1991-1995 Stichting Mathematisch Centrum . All rights reserved.
4
+ # Copyright © 2000 BeOpen.com. All rights reserved.
5
+ # Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
6
+ # Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
8
7
9
8
# Check every path through every method of UserList
10
9
Original file line number Diff line number Diff line change 1
1
# Adapted from https://github.com/python/cpython/blob/master/Lib/test/test_pathlib.py
2
- #
3
2
# Licensed under the Python Software Foundation License Version 2.
4
3
# Copyright © 2001-2020 Python Software Foundation. All rights reserved.
5
- # Copyright © 2000 BeOpen.com . All rights reserved.
6
- # Copyright © 1995-2000 Corporation for National Research Initiatives . All rights reserved.
7
- # Copyright © 1991-1995 Stichting Mathematisch Centrum . All rights reserved.
4
+ # Copyright © 2000 BeOpen.com. All rights reserved.
5
+ # Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
6
+ # Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
8
7
#
9
8
10
9
# stdlib
Original file line number Diff line number Diff line change 2
2
3
3
# Licensed under the Python Software Foundation License Version 2.
4
4
# Copyright © 2001-2020 Python Software Foundation. All rights reserved.
5
- # Copyright © 2000 BeOpen.com . All rights reserved.
6
- # Copyright © 1995-2000 Corporation for National Research Initiatives . All rights reserved.
7
- # Copyright © 1991-1995 Stichting Mathematisch Centrum . All rights reserved.
5
+ # Copyright © 2000 BeOpen.com. All rights reserved.
6
+ # Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
7
+ # Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
8
8
9
9
# Check every path through every method of UserList
10
10
You can’t perform that action at this time.
0 commit comments