Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 415c4a1

Browse filesBrowse files
authored
[3.6] Bring Python into the new year. (GH-24036). (GH-24054)
(cherry picked from commit de6f20a) Co-authored-by: Dong-hee Na <donghee.na@python.org>
1 parent 546baba commit 415c4a1
Copy full SHA for 415c4a1

File tree

9 files changed

+12
-12
lines changed
Filter options

9 files changed

+12
-12
lines changed

‎Doc/copyright.rst

Copy file name to clipboardExpand all lines: Doc/copyright.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Copyright
44

55
Python and this documentation is:
66

7-
Copyright © 2001-2020 Python Software Foundation. All rights reserved.
7+
Copyright © 2001-2021 Python Software Foundation. All rights reserved.
88

99
Copyright © 2000 BeOpen.com. All rights reserved.
1010

‎Doc/license.rst

Copy file name to clipboardExpand all lines: Doc/license.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ PSF LICENSE AGREEMENT FOR PYTHON |release|
8787
analyze, test, perform and/or display publicly, prepare derivative works,
8888
distribute, and otherwise use Python |release| alone or in any derivative
8989
version, provided, however, that PSF's License Agreement and PSF's notice of
90-
copyright, i.e., "Copyright © 2001-2020 Python Software Foundation; All Rights
90+
copyright, i.e., "Copyright © 2001-2021 Python Software Foundation; All Rights
9191
Reserved" are retained in Python |release| alone or in any derivative version
9292
prepared by Licensee.
9393

‎LICENSE

Copy file name to clipboardExpand all lines: LICENSE
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ analyze, test, perform and/or display publicly, prepare derivative works,
7373
distribute, and otherwise use Python alone or in any derivative version,
7474
provided, however, that PSF's License Agreement and PSF's notice of copyright,
7575
i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
76-
2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation;
76+
2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Python Software Foundation;
7777
All Rights Reserved" are retained in Python alone or in any derivative version
7878
prepared by Licensee.
7979

‎Mac/IDLE/IDLE.app/Contents/Info.plist

Copy file name to clipboardExpand all lines: Mac/IDLE/IDLE.app/Contents/Info.plist
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<key>CFBundleExecutable</key>
3737
<string>IDLE</string>
3838
<key>CFBundleGetInfoString</key>
39-
<string>%version%, © 2001-2020 Python Software Foundation</string>
39+
<string>%version%, © 2001-2021 Python Software Foundation</string>
4040
<key>CFBundleIconFile</key>
4141
<string>IDLE.icns</string>
4242
<key>CFBundleIdentifier</key>

‎Mac/PythonLauncher/Info.plist.in

Copy file name to clipboardExpand all lines: Mac/PythonLauncher/Info.plist.in
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<key>CFBundleExecutable</key>
4141
<string>Python Launcher</string>
4242
<key>CFBundleGetInfoString</key>
43-
<string>%VERSION%, © 2001-2020 Python Software Foundation</string>
43+
<string>%VERSION%, © 2001-2021 Python Software Foundation</string>
4444
<key>CFBundleIconFile</key>
4545
<string>PythonLauncher.icns</string>
4646
<key>CFBundleIdentifier</key>

‎Mac/Resources/app/Info.plist.in

Copy file name to clipboardExpand all lines: Mac/Resources/app/Info.plist.in
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<key>CFBundleInfoDictionaryVersion</key>
3838
<string>6.0</string>
3939
<key>CFBundleLongVersionString</key>
40-
<string>%version%, (c) 2001-2020 Python Software Foundation.</string>
40+
<string>%version%, (c) 2001-2021 Python Software Foundation.</string>
4141
<key>CFBundleName</key>
4242
<string>Python</string>
4343
<key>CFBundlePackageType</key>

‎PC/python_ver_rc.h

Copy file name to clipboardExpand all lines: PC/python_ver_rc.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "winver.h"
55

66
#define PYTHON_COMPANY "Python Software Foundation"
7-
#define PYTHON_COPYRIGHT "Copyright \xA9 2001-2016 Python Software Foundation. Copyright \xA9 2000 BeOpen.com. Copyright \xA9 1995-2001 CNRI. Copyright \xA9 1991-1995 SMC."
7+
#define PYTHON_COPYRIGHT "Copyright \xA9 2001-2021 Python Software Foundation. Copyright \xA9 2000 BeOpen.com. Copyright \xA9 1995-2001 CNRI. Copyright \xA9 1991-1995 SMC."
88

99
#define MS_WINDOWS
1010
#include "modsupport.h"

‎Python/getcopyright.c

Copy file name to clipboardExpand all lines: Python/getcopyright.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
static const char cprt[] =
66
"\
7-
Copyright (c) 2001-2020 Python Software Foundation.\n\
7+
Copyright (c) 2001-2021 Python Software Foundation.\n\
88
All Rights Reserved.\n\
99
\n\
1010
Copyright (c) 2000 BeOpen.com.\n\

‎README.rst

Copy file name to clipboardExpand all lines: README.rst
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This is Python version 3.6.12+
1717
:alt: CPython code coverage on Codecov
1818
:target: https://codecov.io/gh/python/cpython
1919

20-
Copyright (c) 2001-2020 Python Software Foundation. All rights reserved.
20+
Copyright (c) 2001-2021 Python Software Foundation. All rights reserved.
2121

2222
See the end of this file for further copyright and license information.
2323

@@ -65,8 +65,8 @@ elsewhere it's just ``python``.
6565

6666
If you are running on macOS with the latest updates installed, make sure to install
6767
openSSL or some other SSL software along with Homebrew or another package manager.
68-
If issues persist, see https://devguide.python.org/setup/#macos-and-os-x for more
69-
information.
68+
If issues persist, see https://devguide.python.org/setup/#macos-and-os-x for more
69+
information.
7070

7171
On macOS, if you have configured Python with ``--enable-framework``, you
7272
should use ``make frameworkinstall`` to do the installation. Note that this
@@ -242,7 +242,7 @@ See :pep:`494` for Python 3.6 release details.
242242
Copyright and License Information
243243
---------------------------------
244244

245-
Copyright (c) 2001-2020 Python Software Foundation. All rights reserved.
245+
Copyright (c) 2001-2021 Python Software Foundation. All rights reserved.
246246

247247
Copyright (c) 2000 BeOpen.com. All rights reserved.
248248

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.