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
a6483d2e
Kaydet (Commit)
a6483d2e
authored
Kas 14, 2002
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove 'created by' lines; people can use CVS for this, and the information is often out of date
üst
ef679561
Hide whitespace changes
Inline
Side-by-side
Showing
34 changed files
with
1 addition
and
72 deletions
+1
-72
archive_util.py
Lib/distutils/archive_util.py
+0
-2
ccompiler.py
Lib/distutils/ccompiler.py
+0
-2
cmd.py
Lib/distutils/cmd.py
+0
-3
bdist.py
Lib/distutils/command/bdist.py
+0
-2
bdist_dumb.py
Lib/distutils/command/bdist_dumb.py
+0
-2
bdist_rpm.py
Lib/distutils/command/bdist_rpm.py
+0
-2
bdist_wininst.py
Lib/distutils/command/bdist_wininst.py
+0
-2
build.py
Lib/distutils/command/build.py
+0
-2
build_clib.py
Lib/distutils/command/build_clib.py
+0
-3
build_ext.py
Lib/distutils/command/build_ext.py
+0
-2
build_py.py
Lib/distutils/command/build_py.py
+0
-2
build_scripts.py
Lib/distutils/command/build_scripts.py
+0
-2
config.py
Lib/distutils/command/config.py
+0
-2
install.py
Lib/distutils/command/install.py
+0
-2
install_headers.py
Lib/distutils/command/install_headers.py
+0
-2
install_lib.py
Lib/distutils/command/install_lib.py
+0
-2
sdist.py
Lib/distutils/command/sdist.py
+0
-2
core.py
Lib/distutils/core.py
+0
-2
cygwinccompiler.py
Lib/distutils/cygwinccompiler.py
+0
-2
dep_util.py
Lib/distutils/dep_util.py
+0
-2
dir_util.py
Lib/distutils/dir_util.py
+0
-2
dist.py
Lib/distutils/dist.py
+0
-3
emxccompiler.py
Lib/distutils/emxccompiler.py
+0
-2
extension.py
Lib/distutils/extension.py
+0
-2
fancy_getopt.py
Lib/distutils/fancy_getopt.py
+0
-2
file_util.py
Lib/distutils/file_util.py
+0
-2
filelist.py
Lib/distutils/filelist.py
+0
-5
msvccompiler.py
Lib/distutils/msvccompiler.py
+1
-1
spawn.py
Lib/distutils/spawn.py
+0
-2
sysconfig.py
Lib/distutils/sysconfig.py
+0
-1
text_file.py
Lib/distutils/text_file.py
+0
-2
unixccompiler.py
Lib/distutils/unixccompiler.py
+0
-2
util.py
Lib/distutils/util.py
+0
-2
version.py
Lib/distutils/version.py
+0
-2
No files found.
Lib/distutils/archive_util.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -3,8 +3,6 @@
Utility functions for creating archive files (tarballs, zip files,
that sort of thing)."""
# created 2000/04/03, Greg Ward (extracted from util.py)
__revision__
=
"$Id$"
import
os
...
...
Lib/distutils/ccompiler.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -3,8 +3,6 @@
Contains CCompiler, an abstract base class that defines the interface
for the Distutils compiler abstraction model."""
# created 1999/07/05, Greg Ward
__revision__
=
"$Id$"
import
sys
,
os
,
re
...
...
Lib/distutils/cmd.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,9 +4,6 @@ Provides the Command class, the base class for the command classes
in the distutils.command package.
"""
# created 2000/04/03, Greg Ward
# (extricated from core.py; actually dates back to the beginning)
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
...
...
Lib/distutils/command/bdist.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist' command (create a built [binary]
distribution)."""
# created 2000/03/29, Greg Ward
__revision__
=
"$Id$"
import
os
,
string
...
...
Lib/distutils/command/bdist_dumb.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,8 +4,6 @@ Implements the Distutils 'bdist_dumb' command (create a "dumb" built
distribution -- i.e., just an archive to be unpacked under $prefix or
$exec_prefix)."""
# created 2000/03/29, Greg Ward
__revision__
=
"$Id$"
import
os
...
...
Lib/distutils/command/bdist_rpm.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist_rpm' command (create RPM source and binary
distributions)."""
# created 2000/04/25, by Harry Henry Gebel
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
Lib/distutils/command/bdist_wininst.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist_wininst' command: create a windows installer
exe-program."""
# created 2000/06/02, Thomas Heller
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
Lib/distutils/command/build.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -2,8 +2,6 @@
Implements the Distutils 'build' command."""
# created 1999/03/08, Greg Ward
__revision__
=
"$Id$"
import
sys
,
os
...
...
Lib/distutils/command/build_clib.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,9 +4,6 @@ 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."""
# created (an empty husk) 1999/12/18, Greg Ward
# fleshed out 2000/02/03-04
__revision__
=
"$Id$"
...
...
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,8 +4,6 @@ Implements the Distutils 'build_ext' command, for building extension
modules (currently limited to C extensions, should accommodate C++
extensions ASAP)."""
# created 1999/08/09, Greg Ward
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
...
...
Lib/distutils/command/build_py.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -2,8 +2,6 @@
Implements the Distutils 'build_py' command."""
# created 1999/03/08, Greg Ward
__revision__
=
"$Id$"
import
sys
,
string
,
os
...
...
Lib/distutils/command/build_scripts.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -2,8 +2,6 @@
Implements the Distutils 'build_scripts' command."""
# created 2000/05/23, Bastian Kleineidam
__revision__
=
"$Id$"
import
sys
,
os
,
re
...
...
Lib/distutils/command/config.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -9,8 +9,6 @@ configure-like tasks: "try to compile this C code", or "figure out where
this header file lives".
"""
# created 2000/05/29, Greg Ward
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
...
...
Lib/distutils/command/install.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,8 +4,6 @@ Implements the Distutils 'install' command."""
from
distutils
import
log
# created 1999/03/13, Greg Ward
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
Lib/distutils/command/install_headers.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -3,8 +3,6 @@
Implements the Distutils 'install_headers' command, to install C/C++ header
files to the Python include directory."""
# created 2000/05/26, Greg Ward
__revision__
=
"$Id$"
import
os
...
...
Lib/distutils/command/install_lib.py
Dosyayı görüntüle @
a6483d2e
# created 1999/03/13, Greg Ward
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
Lib/distutils/command/sdist.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -2,8 +2,6 @@
Implements the Distutils 'sdist' command (create a source distribution)."""
# created 1999/09/22, Greg Ward
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
Lib/distutils/core.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -6,8 +6,6 @@ indirectly provides the Distribution and Command classes, although they are
really defined in distutils.dist and distutils.cmd.
"""
# created 1999/03/01, Greg Ward
__revision__
=
"$Id$"
import
sys
,
os
...
...
Lib/distutils/cygwinccompiler.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -41,8 +41,6 @@ cygwin in no-cygwin mode).
# in the dlls.
# *** only the version of June 2000 shows these problems
# created 2000/05/05, Rene Liebscher
__revision__
=
"$Id$"
import
os
,
sys
,
copy
...
...
Lib/distutils/dep_util.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,8 +4,6 @@ Utility functions for simple, timestamp-based dependency of files
and groups of files; also, function based entirely on such
timestamp dependency analysis."""
# created 2000/04/03, Greg Ward (extracted from util.py)
__revision__
=
"$Id$"
import
os
...
...
Lib/distutils/dir_util.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -2,8 +2,6 @@
Utility functions for manipulating directories and directory trees."""
# created 2000/04/03, Greg Ward (extracted from util.py)
__revision__
=
"$Id$"
import
os
...
...
Lib/distutils/dist.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,9 +4,6 @@ Provides the Distribution class, which represents the module distribution
being built/installed/distributed.
"""
# created 2000/04/03, Greg Ward
# (extricated from core.py; actually dates back to the beginning)
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
...
...
Lib/distutils/emxccompiler.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -19,8 +19,6 @@ handles the EMX port of the GNU C compiler to OS/2.
#
# * EMX gcc 2.81/EMX 0.9d fix03
# created 2001/5/7, Andrew MacIntyre, from Rene Liebscher's cywinccompiler.py
__revision__
=
"$Id$"
import
os
,
sys
,
copy
...
...
Lib/distutils/extension.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -3,8 +3,6 @@
Provides the Extension class, used to describe C/C++ extension
modules in setup scripts."""
# created 2000/05/30, Greg Ward
__revision__
=
"$Id$"
import
os
,
string
...
...
Lib/distutils/fancy_getopt.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -8,8 +8,6 @@ additional features:
* options set attributes of a passed-in object
"""
# created 1999/03/03, Greg Ward
__revision__
=
"$Id$"
import
sys
,
string
,
re
...
...
Lib/distutils/file_util.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -3,8 +3,6 @@
Utility functions for operating on single files.
"""
# created 2000/04/03, Greg Ward (extracted from util.py)
__revision__
=
"$Id$"
import
os
...
...
Lib/distutils/filelist.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,11 +4,6 @@ Provides the FileList class, used for poking about the filesystem
and building lists of files.
"""
# created 2000/07/17, Rene Liebscher (as template.py)
# most parts taken from commands/sdist.py
# renamed 2000/07/29 (to filelist.py) and officially added to
# the Distutils source, Greg Ward
__revision__
=
"$Id$"
import
os
,
string
,
re
...
...
Lib/distutils/msvccompiler.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,7 +4,7 @@ Contains MSVCCompiler, an implementation of the abstract CCompiler class
for the Microsoft Visual Studio."""
#
created 1999/08/19,
Perry Stoll
#
Written by
Perry Stoll
# hacked by Robin Becker and Thomas Heller to do a better job of
# finding DevStudio (through the registry)
...
...
Lib/distutils/spawn.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -6,8 +6,6 @@ Also provides the 'find_executable()' to search the path for a given
executable name.
"""
# created 1999/07/24, Greg Ward
__revision__
=
"$Id$"
import
sys
,
os
,
string
...
...
Lib/distutils/sysconfig.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -7,7 +7,6 @@ available.
Written by: Fred L. Drake, Jr.
Email: <fdrake@acm.org>
Initial date: 17-Dec-1998
"""
__revision__
=
"$Id$"
...
...
Lib/distutils/text_file.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,8 +4,6 @@ provides the TextFile class, which gives an interface to text files
that (optionally) takes care of stripping comments, ignoring blank
lines, and joining lines with backslashes."""
# created 1999/01/12, Greg Ward
__revision__
=
"$Id$"
from
types
import
*
...
...
Lib/distutils/unixccompiler.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -13,8 +13,6 @@ the "typical" Unix-style command-line C compiler:
* link shared library handled by 'cc -shared'
"""
# created 1999/07/05, Greg Ward
__revision__
=
"$Id$"
import
os
,
sys
...
...
Lib/distutils/util.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,8 +4,6 @@ Miscellaneous utility functions -- anything that doesn't fit into
one of the other *util.py modules.
"""
# created 1999/03/08, Greg Ward
__revision__
=
"$Id$"
import
sys
,
os
,
string
,
re
...
...
Lib/distutils/version.py
Dosyayı görüntüle @
a6483d2e
...
...
@@ -4,8 +4,6 @@
# Implements multiple version numbering conventions for the
# Python Module Distribution Utilities.
#
# written by Greg Ward, 1998/12/17
#
# $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