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
5a6601cf
Kaydet (Commit)
5a6601cf
authored
Kas 10, 2004
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Update compatibility comments to 2.1, corresponding to PEP 291 1.13.
üst
0a3c818f
Hide whitespace changes
Inline
Side-by-side
Showing
37 changed files
with
37 additions
and
37 deletions
+37
-37
__init__.py
Lib/distutils/__init__.py
+1
-1
archive_util.py
Lib/distutils/archive_util.py
+1
-1
bcppcompiler.py
Lib/distutils/bcppcompiler.py
+1
-1
ccompiler.py
Lib/distutils/ccompiler.py
+1
-1
cmd.py
Lib/distutils/cmd.py
+1
-1
__init__.py
Lib/distutils/command/__init__.py
+1
-1
bdist.py
Lib/distutils/command/bdist.py
+1
-1
bdist_dumb.py
Lib/distutils/command/bdist_dumb.py
+1
-1
bdist_rpm.py
Lib/distutils/command/bdist_rpm.py
+1
-1
bdist_wininst.py
Lib/distutils/command/bdist_wininst.py
+1
-1
build.py
Lib/distutils/command/build.py
+1
-1
build_clib.py
Lib/distutils/command/build_clib.py
+1
-1
build_ext.py
Lib/distutils/command/build_ext.py
+1
-1
build_py.py
Lib/distutils/command/build_py.py
+1
-1
build_scripts.py
Lib/distutils/command/build_scripts.py
+1
-1
clean.py
Lib/distutils/command/clean.py
+1
-1
config.py
Lib/distutils/command/config.py
+1
-1
install.py
Lib/distutils/command/install.py
+1
-1
install_data.py
Lib/distutils/command/install_data.py
+1
-1
install_headers.py
Lib/distutils/command/install_headers.py
+1
-1
install_lib.py
Lib/distutils/command/install_lib.py
+1
-1
install_scripts.py
Lib/distutils/command/install_scripts.py
+1
-1
sdist.py
Lib/distutils/command/sdist.py
+1
-1
core.py
Lib/distutils/core.py
+1
-1
cygwinccompiler.py
Lib/distutils/cygwinccompiler.py
+1
-1
debug.py
Lib/distutils/debug.py
+1
-1
dep_util.py
Lib/distutils/dep_util.py
+1
-1
dir_util.py
Lib/distutils/dir_util.py
+1
-1
dist.py
Lib/distutils/dist.py
+1
-1
errors.py
Lib/distutils/errors.py
+1
-1
fancy_getopt.py
Lib/distutils/fancy_getopt.py
+1
-1
file_util.py
Lib/distutils/file_util.py
+1
-1
filelist.py
Lib/distutils/filelist.py
+1
-1
log.py
Lib/distutils/log.py
+1
-1
msvccompiler.py
Lib/distutils/msvccompiler.py
+1
-1
mwerkscompiler.py
Lib/distutils/mwerkscompiler.py
+1
-1
spawn.py
Lib/distutils/spawn.py
+1
-1
No files found.
Lib/distutils/__init__.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -8,7 +8,7 @@ used from a setup script as
setup (...)
"""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/archive_util.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -3,7 +3,7 @@
Utility functions for creating archive files (tarballs, zip files,
that sort of thing)."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/bcppcompiler.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -11,7 +11,7 @@ for the Borland C++ compiler.
# someone should sit down and factor out the common code as
# WindowsCCompiler! --GPW
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/ccompiler.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -3,7 +3,7 @@
Contains CCompiler, an abstract base class that defines the interface
for the Distutils compiler abstraction model."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/cmd.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -4,7 +4,7 @@ Provides the Command class, the base class for the command classes
in the distutils.command package.
"""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/__init__.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -3,7 +3,7 @@
Package containing implementation of all the standard Distutils
commands."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/bdist.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -3,7 +3,7 @@
Implements the Distutils 'bdist' command (create a built [binary]
distribution)."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/bdist_dumb.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -4,7 +4,7 @@ Implements the Distutils 'bdist_dumb' command (create a "dumb" built
distribution -- i.e., just an archive to be unpacked under $prefix or
$exec_prefix)."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/bdist_rpm.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -3,7 +3,7 @@
Implements the Distutils 'bdist_rpm' command (create RPM source and binary
distributions)."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/bdist_wininst.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -3,7 +3,7 @@
Implements the Distutils 'bdist_wininst' command: create a windows installer
exe-program."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/build.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -2,7 +2,7 @@
Implements the Distutils 'build' command."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/build_clib.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -4,7 +4,7 @@ Implements the Distutils 'build_clib' command, to build a C/C++ library
that is included in the module distribution and needed by an extension
module."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -4,7 +4,7 @@ Implements the Distutils 'build_ext' command, for building extension
modules (currently limited to C extensions, should accommodate C++
extensions ASAP)."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/build_py.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -2,7 +2,7 @@
Implements the Distutils 'build_py' command."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/build_scripts.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -2,7 +2,7 @@
Implements the Distutils 'build_scripts' command."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/clean.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -4,7 +4,7 @@ Implements the Distutils 'clean' command."""
# contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/config.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -9,7 +9,7 @@ configure-like tasks: "try to compile this C code", or "figure out where
this header file lives".
"""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/install.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -4,7 +4,7 @@ Implements the Distutils 'install' command."""
from
distutils
import
log
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/install_data.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -5,7 +5,7 @@ platform-independent data files."""
# contributed by Bastian Kleineidam
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/install_headers.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -3,7 +3,7 @@
Implements the Distutils 'install_headers' command, to install C/C++ header
files to the Python include directory."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/install_lib.py
Dosyayı görüntüle @
5a6601cf
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/install_scripts.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -5,7 +5,7 @@ Python scripts."""
# contributed by Bastian Kleineidam
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/command/sdist.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -2,7 +2,7 @@
Implements the Distutils 'sdist' command (create a source distribution)."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/core.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -6,7 +6,7 @@ indirectly provides the Distribution and Command classes, although they are
really defined in distutils.dist and distutils.cmd.
"""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/cygwinccompiler.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -45,7 +45,7 @@ cygwin in no-cygwin mode).
# * mingw gcc 3.2/ld 2.13 works
# (ld supports -shared)
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/debug.py
Dosyayı görüntüle @
5a6601cf
import
os
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/dep_util.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -4,7 +4,7 @@ Utility functions for simple, timestamp-based dependency of files
and groups of files; also, function based entirely on such
timestamp dependency analysis."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/dir_util.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -2,7 +2,7 @@
Utility functions for manipulating directories and directory trees."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/dist.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -4,7 +4,7 @@ Provides the Distribution class, which represents the module distribution
being built/installed/distributed.
"""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/errors.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -8,7 +8,7 @@ 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
symbols whose names start with "Distutils" and end with "Error"."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/fancy_getopt.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -8,7 +8,7 @@ additional features:
* options set attributes of a passed-in object
"""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/file_util.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -3,7 +3,7 @@
Utility functions for operating on single files.
"""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/filelist.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -4,7 +4,7 @@ Provides the FileList class, used for poking about the filesystem
and building lists of files.
"""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/log.py
Dosyayı görüntüle @
5a6601cf
"""A simple log mechanism styled after PEP 282."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
# The class here is styled after PEP 282 so that it could later be
# replaced with a standard Python logging implementation.
...
...
Lib/distutils/msvccompiler.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -8,7 +8,7 @@ for the Microsoft Visual Studio.
# hacked by Robin Becker and Thomas Heller to do a better job of
# finding DevStudio (through the registry)
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/mwerkscompiler.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -4,7 +4,7 @@ Contains MWerksCompiler, an implementation of the abstract CCompiler class
for MetroWerks CodeWarrior on the Macintosh. Needs work to support CW on
Windows."""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
Lib/distutils/spawn.py
Dosyayı görüntüle @
5a6601cf
...
...
@@ -6,7 +6,7 @@ Also provides the 'find_executable()' to search the path for a given
executable name.
"""
# This module should be kept compatible with Python
1.5.2
.
# This module should be kept compatible with Python
2.1
.
__revision__
=
"$Id$"
...
...
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