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 2525# UserList based on CPython.
2626# Licensed under the Python Software Foundation License Version 2.
2727# 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.
3131#
3232
3333# stdlib
Original file line number Diff line number Diff line change 1515# Parts of the docstrings based on the Python 3.8.2 Documentation
1616# Licensed under the Python Software Foundation License Version 2.
1717# 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.
2121#
2222# This program is free software; you can redistribute it and/or modify
2323# it under the terms of the GNU Lesser General Public License as published by
Original file line number Diff line number Diff line change 1515# Parts of the docstrings and the PathPlus class based on the Python 3.8.2 Documentation
1616# Licensed under the Python Software Foundation License Version 2.
1717# 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.
1919# Copyright © 1995-2000 Corporation for National Research Initiatives. All rights reserved.
2020# Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
2121#
Original file line number Diff line number Diff line change 1010# Parts of the docstrings based on the Python 3.8.2 Documentation
1111# Licensed under the Python Software Foundation License Version 2.
1212# 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.
1616#
1717# This program is free software; you can redistribute it and/or modify
1818# 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(
165165# Backported from https://github.com/python/cpython/blob/master/Lib/types.py
166166# Licensed under the Python Software Foundation License Version 2.
167167# 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.
171171
172172WrapperDescriptorType = type (object .__init__ )
173173MethodWrapperType = type (object ().__str__ )
Original file line number Diff line number Diff line change 22
33# Licensed under the Python Software Foundation License Version 2.
44# 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.
88"""
99Tests common to list and UserList.UserList
1010"""
Original file line number Diff line number Diff line change 11# From https://raw.githubusercontent.com/python/cpython/master/Lib/test/seq_tests.py
22# Licensed under the Python Software Foundation License Version 2.
33# 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.
77"""
88Tests common to tuple, list and UserList.UserList
99"""
Original file line number Diff line number Diff line change 11# From https://raw.githubusercontent.com/python/cpython/master/Lib/test/test_userlist.py
2-
32# Licensed under the Python Software Foundation License Version 2.
43# 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.
87
98# Check every path through every method of UserList
109
Original file line number Diff line number Diff line change 11# Adapted from https://github.com/python/cpython/blob/master/Lib/test/test_pathlib.py
2- #
32# Licensed under the Python Software Foundation License Version 2.
43# 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.
87#
98
109# stdlib
Original file line number Diff line number Diff line change 22
33# Licensed under the Python Software Foundation License Version 2.
44# 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.
88
99# Check every path through every method of UserList
1010
You can’t perform that action at this time.
0 commit comments