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
3ce77fd0
Kaydet (Commit)
3ce77fd0
authored
Mar 02, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Changed '__rcsid__' to '__revision__'.
üst
60f64330
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
__init__.py
Lib/distutils/__init__.py
+1
-1
ccompiler.py
Lib/distutils/ccompiler.py
+1
-1
__init__.py
Lib/distutils/command/__init__.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_lib.py
Lib/distutils/command/build_lib.py
+1
-1
build_py.py
Lib/distutils/command/build_py.py
+1
-1
install.py
Lib/distutils/command/install.py
+1
-1
install_ext.py
Lib/distutils/command/install_ext.py
+1
-1
install_lib.py
Lib/distutils/command/install_lib.py
+1
-1
install_py.py
Lib/distutils/command/install_py.py
+1
-1
sdist.py
Lib/distutils/command/sdist.py
+1
-1
core.py
Lib/distutils/core.py
+1
-1
errors.py
Lib/distutils/errors.py
+1
-1
fancy_getopt.py
Lib/distutils/fancy_getopt.py
+1
-1
msvccompiler.py
Lib/distutils/msvccompiler.py
+1
-1
spawn.py
Lib/distutils/spawn.py
+1
-1
unixccompiler.py
Lib/distutils/unixccompiler.py
+1
-1
util.py
Lib/distutils/util.py
+1
-1
No files found.
Lib/distutils/__init__.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -8,4 +8,4 @@ used from a setup script as
setup (...)
"""
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
Lib/distutils/ccompiler.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -5,7 +5,7 @@ for the Distutils compiler abstraction model."""
# created 1999/07/05, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
os
from
types
import
*
...
...
Lib/distutils/command/__init__.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -13,7 +13,7 @@ commands. Currently this means:
but this list will undoubtedly grow with time."""
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
__all__
=
[
'build'
,
'build_py'
,
...
...
Lib/distutils/command/build.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -4,7 +4,7 @@ Implements the Distutils 'build' command."""
# created 1999/03/08, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
os
from
distutils.core
import
Command
...
...
Lib/distutils/command/build_clib.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -7,7 +7,7 @@ module."""
# created (an empty husk) 1999/12/18, Greg Ward
# fleshed out 2000/02/03-04
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
# XXX this module has *lots* of code ripped-off quite transparently from
...
...
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -6,7 +6,7 @@ extensions ASAP)."""
# created 1999/08/09, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
os
,
string
,
re
from
types
import
*
...
...
Lib/distutils/command/build_lib.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -7,7 +7,7 @@ module."""
# created (an empty husk) 1999/12/18, Greg Ward
# fleshed out 2000/02/03-04
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
# XXX this module has *lots* of code ripped-off quite transparently from
...
...
Lib/distutils/command/build_py.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -4,7 +4,7 @@ Implements the Distutils 'build_py' command."""
# created 1999/03/08, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
string
,
os
from
types
import
*
...
...
Lib/distutils/command/install.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -4,7 +4,7 @@ Implements the Distutils 'install' command."""
# created 1999/03/13, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
os
,
string
from
types
import
*
...
...
Lib/distutils/command/install_ext.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -4,7 +4,7 @@ Implement the Distutils "install_ext" command to install extension modules."""
# created 1999/09/12, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
from
distutils.core
import
Command
from
distutils.util
import
copy_tree
...
...
Lib/distutils/command/install_lib.py
Dosyayı görüntüle @
3ce77fd0
# created 1999/03/13, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
string
from
distutils.core
import
Command
...
...
Lib/distutils/command/install_py.py
Dosyayı görüntüle @
3ce77fd0
# created 1999/03/13, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
string
from
distutils.core
import
Command
...
...
Lib/distutils/command/sdist.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -4,7 +4,7 @@ Implements the Distutils 'sdist' command (create a source distribution)."""
# created 1999/09/22, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
os
,
string
,
re
import
fnmatch
...
...
Lib/distutils/core.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -8,7 +8,7 @@ may be subclassed by clients for still more flexibility)."""
# created 1999/03/01, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
os
import
string
,
re
...
...
Lib/distutils/errors.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -10,7 +10,7 @@ symbols whose names start with "Distutils" and end with "Error"."""
# created 1999/03/03, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
types
...
...
Lib/distutils/fancy_getopt.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -10,7 +10,7 @@ additional features:
# created 1999/03/03, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
string
,
re
from
types
import
*
...
...
Lib/distutils/msvccompiler.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -6,7 +6,7 @@ for the Microsoft Visual Studio."""
# created 1999/08/19, Perry Stoll
#
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
os
import
sys
...
...
Lib/distutils/spawn.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -5,7 +5,7 @@ specific functions for launching another program in a sub-process."""
# created 1999/07/24, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
sys
,
os
,
string
from
distutils.errors
import
*
...
...
Lib/distutils/unixccompiler.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -15,7 +15,7 @@ the "typical" Unix-style command-line C compiler:
# created 1999/07/05, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
string
,
re
,
os
from
types
import
*
...
...
Lib/distutils/util.py
Dosyayı görüntüle @
3ce77fd0
...
...
@@ -9,7 +9,7 @@ file causing it."""
# created 1999/03/08, Greg Ward
__r
csid
__
=
"$Id$"
__r
evision
__
=
"$Id$"
import
os
,
string
from
distutils.errors
import
*
...
...
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