Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 926bc22

Browse files
committed
Added 2.3.3 and 2.3.4 to the release table. Added 2004 to the list of
copyright years.
1 parent 5b44cd6 commit 926bc22

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

LICENSE

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ the various releases.
4545
2.3 2.2.2 2002-2003 PSF yes
4646
2.3.1 2.3 2002-2003 PSF yes
4747
2.3.2 2.3.1 2002-2003 PSF yes
48+
2.3.3 2.3.2 2002-2003 PSF yes
49+
2.3.4 2.3.3 2004 PSF yes
4850

4951
Footnotes:
5052

@@ -80,9 +82,9 @@ license to reproduce, analyze, test, perform and/or display publicly,
8082
prepare derivative works, distribute, and otherwise use Python 2.3
8183
alone or in any derivative version, provided, however, that PSF's
8284
License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
83-
2001, 2002, 2003 Python Software Foundation; All Rights Reserved" are
84-
retained in Python 2.3 alone or in any derivative version prepared by
85-
Licensee.
85+
2001, 2002, 2003, 2004 Python Software Foundation; All Rights Reserved"
86+
are retained in Python 2.3 alone or in any derivative version prepared
87+
by Licensee.
8688

8789
3. In the event Licensee prepares a derivative work that is based on
8890
or incorporates Python 2.3 or any part thereof, and wants to make

Lib/distutils/command/build_ext.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,10 @@ def finalize_options (self):
171171
# Append the source distribution include and library directories,
172172
# this allows distutils on windows to work in the source tree
173173
self.include_dirs.append(os.path.join(sys.exec_prefix, 'PC'))
174-
self.library_dirs.append(os.path.join(sys.exec_prefix, 'PCBuild'))
174+
self.library_dirs.append(os.path.join(sys.exec_prefix, 'PC', 'VC6'))
175+
#self.library_dirs.append(os.path.join(sys.exec_prefix, 'PCBuild'))
175176

176-
# OS/2 (EMX) doesn't support Debug vs Release builds, but has the
177+
# OS/2 (EMX) doesn't support Debug vs Release builds, but has the
177178
# import libraries in its "Config" subdirectory
178179
if os.name == 'os2':
179180
self.library_dirs.append(os.path.join(sys.exec_prefix, 'Config'))
@@ -636,7 +637,7 @@ def get_libraries (self, ext):
636637
# EMX/GCC requires the python library explicitly, and I
637638
# believe VACPP does as well (though not confirmed) - AIM Apr01
638639
template = "python%d%d"
639-
# debug versions of the main DLL aren't supported, at least
640+
# debug versions of the main DLL aren't supported, at least
640641
# not at this time - AIM Apr01
641642
#if self.debug:
642643
# template = template + '_d'

0 commit comments

Comments
 (0)