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
bbeceeaf
Kaydet (Commit)
bbeceeaf
authored
Şub 18, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Renamed all 'options' class attributes to 'user_options'.
üst
592f2827
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
20 additions
and
10 deletions
+20
-10
build.py
Lib/distutils/command/build.py
+2
-1
build_clib.py
Lib/distutils/command/build_clib.py
+2
-1
build_ext.py
Lib/distutils/command/build_ext.py
+2
-1
build_lib.py
Lib/distutils/command/build_lib.py
+2
-1
build_py.py
Lib/distutils/command/build_py.py
+2
-1
install.py
Lib/distutils/command/install.py
+2
-1
install_ext.py
Lib/distutils/command/install_ext.py
+2
-1
install_lib.py
Lib/distutils/command/install_lib.py
+2
-1
install_py.py
Lib/distutils/command/install_py.py
+2
-1
sdist.py
Lib/distutils/command/sdist.py
+2
-1
No files found.
Lib/distutils/command/build.py
Dosyayı görüntüle @
bbeceeaf
...
...
@@ -14,7 +14,8 @@ class build (Command):
description
=
"build everything needed to install"
options
=
[(
'build-base='
,
'b'
,
user_options
=
[
(
'build-base='
,
'b'
,
"base directory for build library"
),
(
'build-lib='
,
'l'
,
"directory for platform-shared files"
),
...
...
Lib/distutils/command/build_clib.py
Dosyayı görüntüle @
bbeceeaf
...
...
@@ -28,7 +28,8 @@ from distutils.ccompiler import new_compiler
class
build_lib
(
Command
):
options
=
[(
'debug'
,
'g'
,
user_options
=
[
(
'debug'
,
'g'
,
"compile with debugging information"
),
]
...
...
Lib/distutils/command/build_ext.py
Dosyayı görüntüle @
bbeceeaf
...
...
@@ -42,7 +42,8 @@ class build_ext (Command):
# takes care of both command-line and client options
# in between set_default_options() and set_final_options())
options
=
[(
'build-dir='
,
'd'
,
user_options
=
[
(
'build-dir='
,
'd'
,
"directory for compiled extension modules"
),
(
'include-dirs='
,
'I'
,
"list of directories to search for header files"
),
...
...
Lib/distutils/command/build_lib.py
Dosyayı görüntüle @
bbeceeaf
...
...
@@ -28,7 +28,8 @@ from distutils.ccompiler import new_compiler
class
build_lib
(
Command
):
options
=
[(
'debug'
,
'g'
,
user_options
=
[
(
'debug'
,
'g'
,
"compile with debugging information"
),
]
...
...
Lib/distutils/command/build_py.py
Dosyayı görüntüle @
bbeceeaf
...
...
@@ -18,7 +18,8 @@ class build_py (Command):
description
=
"
\"
build
\"
pure Python modules (copy to build directory)"
options
=
[(
'build-dir='
,
'd'
,
"directory for platform-shared files"
),
user_options
=
[
(
'build-dir='
,
'd'
,
"directory for platform-shared files"
),
]
...
...
Lib/distutils/command/install.py
Dosyayı görüntüle @
bbeceeaf
...
...
@@ -16,7 +16,8 @@ class install (Command):
description
=
"install everything from build directory"
options
=
[(
'prefix='
,
None
,
"installation prefix"
),
user_options
=
[
(
'prefix='
,
None
,
"installation prefix"
),
(
'exec-prefix='
,
None
,
"prefix for platform-specific files"
),
...
...
Lib/distutils/command/install_ext.py
Dosyayı görüntüle @
bbeceeaf
...
...
@@ -13,7 +13,8 @@ class install_ext (Command):
description
=
"install C/C++ extension modules"
options
=
[(
'install-dir='
,
'd'
,
"directory to install to"
),
user_options
=
[
(
'install-dir='
,
'd'
,
"directory to install to"
),
(
'build-dir='
,
'b'
,
"build directory (where to install from)"
),
]
...
...
Lib/distutils/command/install_lib.py
Dosyayı görüntüle @
bbeceeaf
...
...
@@ -10,7 +10,8 @@ class install_py (Command):
description
=
"install pure Python modules"
options
=
[(
'install-dir='
,
'd'
,
"directory to install to"
),
user_options
=
[
(
'install-dir='
,
'd'
,
"directory to install to"
),
(
'build-dir='
,
'b'
,
"build directory (where to install from)"
),
(
'compile'
,
'c'
,
"compile .py to .pyc"
),
(
'optimize'
,
'o'
,
"compile .py to .pyo (optimized)"
),
...
...
Lib/distutils/command/install_py.py
Dosyayı görüntüle @
bbeceeaf
...
...
@@ -10,7 +10,8 @@ class install_py (Command):
description
=
"install pure Python modules"
options
=
[(
'install-dir='
,
'd'
,
"directory to install to"
),
user_options
=
[
(
'install-dir='
,
'd'
,
"directory to install to"
),
(
'build-dir='
,
'b'
,
"build directory (where to install from)"
),
(
'compile'
,
'c'
,
"compile .py to .pyc"
),
(
'optimize'
,
'o'
,
"compile .py to .pyo (optimized)"
),
...
...
Lib/distutils/command/sdist.py
Dosyayı görüntüle @
bbeceeaf
...
...
@@ -21,7 +21,8 @@ class sdist (Command):
description
=
"create a source distribution (tarball, zip file, etc.)"
options
=
[(
'template='
,
't'
,
user_options
=
[
(
'template='
,
't'
,
"name of manifest template file [default: MANIFEST.in]"
),
(
'manifest='
,
'm'
,
"name of manifest file [default: MANIFEST]"
),
...
...
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