Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
d448f663
Kaydet (Commit)
d448f663
authored
Kas 19, 2002
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add comment to Distutil files about requiring 1.5.2 compatibility, as
suggested by PEP 291.
üst
6f429c3d
Hide whitespace changes
Inline
Side-by-side
Showing
37 changed files
with
78 additions
and
1 deletion
+78
-1
__init__.py
Lib/distutils/__init__.py
+2
-0
archive_util.py
Lib/distutils/archive_util.py
+2
-0
bcppcompiler.py
Lib/distutils/bcppcompiler.py
+2
-0
ccompiler.py
Lib/distutils/ccompiler.py
+2
-0
cmd.py
Lib/distutils/cmd.py
+2
-0
__init__.py
Lib/distutils/command/__init__.py
+2
-0
bdist.py
Lib/distutils/command/bdist.py
+2
-0
bdist_dumb.py
Lib/distutils/command/bdist_dumb.py
+2
-0
bdist_rpm.py
Lib/distutils/command/bdist_rpm.py
+2
-0
bdist_wininst.py
Lib/distutils/command/bdist_wininst.py
+2
-0
build.py
Lib/distutils/command/build.py
+2
-0
build_clib.py
Lib/distutils/command/build_clib.py
+2
-0
build_ext.py
Lib/distutils/command/build_ext.py
+2
-0
build_py.py
Lib/distutils/command/build_py.py
+2
-0
build_scripts.py
Lib/distutils/command/build_scripts.py
+2
-0
clean.py
Lib/distutils/command/clean.py
+2
-0
config.py
Lib/distutils/command/config.py
+2
-0
install.py
Lib/distutils/command/install.py
+2
-0
install_data.py
Lib/distutils/command/install_data.py
+2
-0
install_headers.py
Lib/distutils/command/install_headers.py
+2
-0
install_lib.py
Lib/distutils/command/install_lib.py
+2
-0
install_scripts.py
Lib/distutils/command/install_scripts.py
+2
-0
sdist.py
Lib/distutils/command/sdist.py
+2
-0
core.py
Lib/distutils/core.py
+2
-0
cygwinccompiler.py
Lib/distutils/cygwinccompiler.py
+2
-0
debug.py
Lib/distutils/debug.py
+4
-0
dep_util.py
Lib/distutils/dep_util.py
+2
-0
dir_util.py
Lib/distutils/dir_util.py
+2
-0
dist.py
Lib/distutils/dist.py
+2
-0
errors.py
Lib/distutils/errors.py
+2
-0
fancy_getopt.py
Lib/distutils/fancy_getopt.py
+2
-0
file_util.py
Lib/distutils/file_util.py
+2
-0
filelist.py
Lib/distutils/filelist.py
+2
-0
log.py
Lib/distutils/log.py
+2
-0
msvccompiler.py
Lib/distutils/msvccompiler.py
+2
-1
mwerkscompiler.py
Lib/distutils/mwerkscompiler.py
+4
-0
spawn.py
Lib/distutils/spawn.py
+2
-0
No files found.
Lib/distutils/__init__.py
Dosyayı görüntüle @
d448f663
...
@@ -8,6 +8,8 @@ used from a setup script as
...
@@ -8,6 +8,8 @@ used from a setup script as
setup (...)
setup (...)
"""
"""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
__version__
=
"1.0.3"
__version__
=
"1.0.3"
Lib/distutils/archive_util.py
Dosyayı görüntüle @
d448f663
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
Utility functions for creating archive files (tarballs, zip files,
Utility functions for creating archive files (tarballs, zip files,
that sort of thing)."""
that sort of thing)."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
import
os
...
...
Lib/distutils/bcppcompiler.py
Dosyayı görüntüle @
d448f663
...
@@ -11,6 +11,8 @@ for the Borland C++ compiler.
...
@@ -11,6 +11,8 @@ for the Borland C++ compiler.
# someone should sit down and factor out the common code as
# someone should sit down and factor out the common code as
# WindowsCCompiler! --GPW
# WindowsCCompiler! --GPW
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
...
...
Lib/distutils/ccompiler.py
Dosyayı görüntüle @
d448f663
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
Contains CCompiler, an abstract base class that defines the interface
Contains CCompiler, an abstract base class that defines the interface
for the Distutils compiler abstraction model."""
for the Distutils compiler abstraction model."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
re
import
sys
,
os
,
re
...
...
Lib/distutils/cmd.py
Dosyayı görüntüle @
d448f663
...
@@ -4,6 +4,8 @@ Provides the Command class, the base class for the command classes
...
@@ -4,6 +4,8 @@ Provides the Command class, the base class for the command classes
in the distutils.command package.
in the distutils.command package.
"""
"""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
import
sys
,
os
,
string
,
re
...
...
Lib/distutils/command/__init__.py
Dosyayı görüntüle @
d448f663
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
Package containing implementation of all the standard Distutils
Package containing implementation of all the standard Distutils
commands."""
commands."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
__all__
=
[
'build'
,
__all__
=
[
'build'
,
...
...
Lib/distutils/command/bdist.py
Dosyayı görüntüle @
d448f663
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
Implements the Distutils 'bdist' command (create a built [binary]
Implements the Distutils 'bdist' command (create a built [binary]
distribution)."""
distribution)."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
,
string
import
os
,
string
...
...
Lib/distutils/command/bdist_dumb.py
Dosyayı görüntüle @
d448f663
...
@@ -4,6 +4,8 @@ Implements the Distutils 'bdist_dumb' command (create a "dumb" built
...
@@ -4,6 +4,8 @@ Implements the Distutils 'bdist_dumb' command (create a "dumb" built
distribution -- i.e., just an archive to be unpacked under $prefix or
distribution -- i.e., just an archive to be unpacked under $prefix or
$exec_prefix)."""
$exec_prefix)."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
import
os
...
...
Lib/distutils/command/bdist_rpm.py
Dosyayı görüntüle @
d448f663
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
Implements the Distutils 'bdist_rpm' command (create RPM source and binary
Implements the Distutils 'bdist_rpm' command (create RPM source and binary
distributions)."""
distributions)."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
sys
,
os
,
string
...
...
Lib/distutils/command/bdist_wininst.py
Dosyayı görüntüle @
d448f663
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
Implements the Distutils 'bdist_wininst' command: create a windows installer
Implements the Distutils 'bdist_wininst' command: create a windows installer
exe-program."""
exe-program."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
sys
,
os
,
string
...
...
Lib/distutils/command/build.py
Dosyayı görüntüle @
d448f663
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
Implements the Distutils 'build' command."""
Implements the Distutils 'build' command."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
import
sys
,
os
...
...
Lib/distutils/command/build_clib.py
Dosyayı görüntüle @
d448f663
...
@@ -4,6 +4,8 @@ Implements the Distutils 'build_clib' command, to build a C/C++ library
...
@@ -4,6 +4,8 @@ Implements the Distutils 'build_clib' command, to build a C/C++ library
that is included in the module distribution and needed by an extension
that is included in the module distribution and needed by an extension
module."""
module."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
...
...
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
d448f663
...
@@ -4,6 +4,8 @@ Implements the Distutils 'build_ext' command, for building extension
...
@@ -4,6 +4,8 @@ Implements the Distutils 'build_ext' command, for building extension
modules (currently limited to C extensions, should accommodate C++
modules (currently limited to C extensions, should accommodate C++
extensions ASAP)."""
extensions ASAP)."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
import
sys
,
os
,
string
,
re
...
...
Lib/distutils/command/build_py.py
Dosyayı görüntüle @
d448f663
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
Implements the Distutils 'build_py' command."""
Implements the Distutils 'build_py' command."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
string
,
os
import
sys
,
string
,
os
...
...
Lib/distutils/command/build_scripts.py
Dosyayı görüntüle @
d448f663
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
Implements the Distutils 'build_scripts' command."""
Implements the Distutils 'build_scripts' command."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
re
import
sys
,
os
,
re
...
...
Lib/distutils/command/clean.py
Dosyayı görüntüle @
d448f663
...
@@ -4,6 +4,8 @@ Implements the Distutils 'clean' command."""
...
@@ -4,6 +4,8 @@ Implements the Distutils 'clean' command."""
# contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
# contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
import
os
...
...
Lib/distutils/command/config.py
Dosyayı görüntüle @
d448f663
...
@@ -9,6 +9,8 @@ configure-like tasks: "try to compile this C code", or "figure out where
...
@@ -9,6 +9,8 @@ configure-like tasks: "try to compile this C code", or "figure out where
this header file lives".
this header file lives".
"""
"""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
import
sys
,
os
,
string
,
re
...
...
Lib/distutils/command/install.py
Dosyayı görüntüle @
d448f663
...
@@ -4,6 +4,8 @@ Implements the Distutils 'install' command."""
...
@@ -4,6 +4,8 @@ Implements the Distutils 'install' command."""
from
distutils
import
log
from
distutils
import
log
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
sys
,
os
,
string
...
...
Lib/distutils/command/install_data.py
Dosyayı görüntüle @
d448f663
...
@@ -5,6 +5,8 @@ platform-independent data files."""
...
@@ -5,6 +5,8 @@ platform-independent data files."""
# contributed by Bastian Kleineidam
# contributed by Bastian Kleineidam
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
import
os
...
...
Lib/distutils/command/install_headers.py
Dosyayı görüntüle @
d448f663
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
Implements the Distutils 'install_headers' command, to install C/C++ header
Implements the Distutils 'install_headers' command, to install C/C++ header
files to the Python include directory."""
files to the Python include directory."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
import
os
...
...
Lib/distutils/command/install_lib.py
Dosyayı görüntüle @
d448f663
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
sys
,
os
,
string
...
...
Lib/distutils/command/install_scripts.py
Dosyayı görüntüle @
d448f663
...
@@ -5,6 +5,8 @@ Python scripts."""
...
@@ -5,6 +5,8 @@ Python scripts."""
# contributed by Bastian Kleineidam
# contributed by Bastian Kleineidam
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
import
os
...
...
Lib/distutils/command/sdist.py
Dosyayı görüntüle @
d448f663
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
Implements the Distutils 'sdist' command (create a source distribution)."""
Implements the Distutils 'sdist' command (create a source distribution)."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
sys
,
os
,
string
...
...
Lib/distutils/core.py
Dosyayı görüntüle @
d448f663
...
@@ -6,6 +6,8 @@ indirectly provides the Distribution and Command classes, although they are
...
@@ -6,6 +6,8 @@ indirectly provides the Distribution and Command classes, although they are
really defined in distutils.dist and distutils.cmd.
really defined in distutils.dist and distutils.cmd.
"""
"""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
import
sys
,
os
...
...
Lib/distutils/cygwinccompiler.py
Dosyayı görüntüle @
d448f663
...
@@ -41,6 +41,8 @@ cygwin in no-cygwin mode).
...
@@ -41,6 +41,8 @@ cygwin in no-cygwin mode).
# in the dlls.
# in the dlls.
# *** only the version of June 2000 shows these problems
# *** only the version of June 2000 shows these problems
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
,
sys
,
copy
import
os
,
sys
,
copy
...
...
Lib/distutils/debug.py
Dosyayı görüntüle @
d448f663
import
os
import
os
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
# If DISTUTILS_DEBUG is anything other than the empty string, we run in
# If DISTUTILS_DEBUG is anything other than the empty string, we run in
# debug mode.
# debug mode.
DEBUG
=
os
.
environ
.
get
(
'DISTUTILS_DEBUG'
)
DEBUG
=
os
.
environ
.
get
(
'DISTUTILS_DEBUG'
)
...
...
Lib/distutils/dep_util.py
Dosyayı görüntüle @
d448f663
...
@@ -4,6 +4,8 @@ Utility functions for simple, timestamp-based dependency of files
...
@@ -4,6 +4,8 @@ Utility functions for simple, timestamp-based dependency of files
and groups of files; also, function based entirely on such
and groups of files; also, function based entirely on such
timestamp dependency analysis."""
timestamp dependency analysis."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
import
os
...
...
Lib/distutils/dir_util.py
Dosyayı görüntüle @
d448f663
...
@@ -2,6 +2,8 @@
...
@@ -2,6 +2,8 @@
Utility functions for manipulating directories and directory trees."""
Utility functions for manipulating directories and directory trees."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
import
os
...
...
Lib/distutils/dist.py
Dosyayı görüntüle @
d448f663
...
@@ -4,6 +4,8 @@ Provides the Distribution class, which represents the module distribution
...
@@ -4,6 +4,8 @@ Provides the Distribution class, which represents the module distribution
being built/installed/distributed.
being built/installed/distributed.
"""
"""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
import
sys
,
os
,
string
,
re
...
...
Lib/distutils/errors.py
Dosyayı görüntüle @
d448f663
...
@@ -8,6 +8,8 @@ usually raised for errors that are obviously the end-user's fault
...
@@ -8,6 +8,8 @@ usually raised for errors that are obviously the end-user's fault
This module is safe to use in "from ... import *" mode; it only exports
This module is safe to use in "from ... import *" mode; it only exports
symbols whose names start with "Distutils" and end with "Error"."""
symbols whose names start with "Distutils" and end with "Error"."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
class
DistutilsError
(
Exception
):
class
DistutilsError
(
Exception
):
...
...
Lib/distutils/fancy_getopt.py
Dosyayı görüntüle @
d448f663
...
@@ -8,6 +8,8 @@ additional features:
...
@@ -8,6 +8,8 @@ additional features:
* options set attributes of a passed-in object
* options set attributes of a passed-in object
"""
"""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
string
,
re
import
sys
,
string
,
re
...
...
Lib/distutils/file_util.py
Dosyayı görüntüle @
d448f663
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
Utility functions for operating on single files.
Utility functions for operating on single files.
"""
"""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
import
os
...
...
Lib/distutils/filelist.py
Dosyayı görüntüle @
d448f663
...
@@ -4,6 +4,8 @@ Provides the FileList class, used for poking about the filesystem
...
@@ -4,6 +4,8 @@ Provides the FileList class, used for poking about the filesystem
and building lists of files.
and building lists of files.
"""
"""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
os
,
string
,
re
import
os
,
string
,
re
...
...
Lib/distutils/log.py
Dosyayı görüntüle @
d448f663
"""A simple log mechanism styled after PEP 282."""
"""A simple log mechanism styled after PEP 282."""
# This module should be kept compatible with Python 1.5.2.
# The class here is styled after PEP 282 so that it could later be
# The class here is styled after PEP 282 so that it could later be
# replaced with a standard Python logging implementation.
# replaced with a standard Python logging implementation.
...
...
Lib/distutils/msvccompiler.py
Dosyayı görüntüle @
d448f663
...
@@ -3,11 +3,12 @@
...
@@ -3,11 +3,12 @@
Contains MSVCCompiler, an implementation of the abstract CCompiler class
Contains MSVCCompiler, an implementation of the abstract CCompiler class
for the Microsoft Visual Studio."""
for the Microsoft Visual Studio."""
# Written by Perry Stoll
# Written by Perry Stoll
# hacked by Robin Becker and Thomas Heller to do a better job of
# hacked by Robin Becker and Thomas Heller to do a better job of
# finding DevStudio (through the registry)
# finding DevStudio (through the registry)
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
sys
,
os
,
string
...
...
Lib/distutils/mwerkscompiler.py
Dosyayı görüntüle @
d448f663
...
@@ -4,6 +4,10 @@ Contains MWerksCompiler, an implementation of the abstract CCompiler class
...
@@ -4,6 +4,10 @@ Contains MWerksCompiler, an implementation of the abstract CCompiler class
for MetroWerks CodeWarrior on the Macintosh. Needs work to support CW on
for MetroWerks CodeWarrior on the Macintosh. Needs work to support CW on
Windows."""
Windows."""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
sys
,
os
,
string
from
types
import
*
from
types
import
*
from
distutils.errors
import
\
from
distutils.errors
import
\
...
...
Lib/distutils/spawn.py
Dosyayı görüntüle @
d448f663
...
@@ -6,6 +6,8 @@ Also provides the 'find_executable()' to search the path for a given
...
@@ -6,6 +6,8 @@ Also provides the 'find_executable()' to search the path for a given
executable name.
executable name.
"""
"""
# This module should be kept compatible with Python 1.5.2.
__revision__
=
"$Id$"
__revision__
=
"$Id$"
import
sys
,
os
,
string
import
sys
,
os
,
string
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment