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
56be37ce
Kaydet (Commit)
56be37ce
authored
Agu 02, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#7973: Fix distutils options spelling.
üst
dee7b850
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
builtdist.rst
Doc/distutils/builtdist.rst
+1
-1
bdist_msi.py
Lib/distutils/command/bdist_msi.py
+1
-1
bdist_wininst.py
Lib/distutils/command/bdist_wininst.py
+1
-1
No files found.
Doc/distutils/builtdist.rst
Dosyayı görüntüle @
56be37ce
...
...
@@ -176,7 +176,7 @@ easily specify multiple formats in one run. If you need to do both, you can
explicitly specify multiple :command:`bdist_\*` commands and their options::
python setup.py bdist_rpm --packager="John Doe <jdoe@example.org>" \
bdist_wininst --target
_
version="2.0"
bdist_wininst --target
-
version="2.0"
Creating RPM packages is driven by a :file:`.spec` file, much as using the
Distutils is driven by the setup script. To make your life easier, the
...
...
Lib/distutils/command/bdist_msi.py
Dosyayı görüntüle @
56be37ce
...
...
@@ -148,7 +148,7 @@ class bdist_msi(Command):
if
not
self
.
skip_build
and
self
.
distribution
.
has_ext_modules
()
\
and
self
.
target_version
!=
short_version
:
raise
DistutilsOptionError
(
"target version can only be
%
s, or the '--skip
_
build'"
"target version can only be
%
s, or the '--skip
-
build'"
" option must be specified"
%
(
short_version
,))
else
:
self
.
versions
=
list
(
self
.
all_versions
)
...
...
Lib/distutils/command/bdist_wininst.py
Dosyayı görüntüle @
56be37ce
...
...
@@ -89,7 +89,7 @@ class bdist_wininst(Command):
short_version
=
get_python_version
()
if
self
.
target_version
and
self
.
target_version
!=
short_version
:
raise
DistutilsOptionError
(
"target version can only be
%
s, or the '--skip
_
build'"
\
"target version can only be
%
s, or the '--skip
-
build'"
\
" option must be specified"
%
(
short_version
,))
self
.
target_version
=
short_version
...
...
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