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
efbd0710
Kaydet (Commit)
efbd0710
authored
Haz 02, 2000
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Only print debugging output if DEBUG true.
üst
2bd3f425
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
bdist_rpm.py
Lib/distutils/command/bdist_rpm.py
+7
-6
No files found.
Lib/distutils/command/bdist_rpm.py
Dosyayı görüntüle @
efbd0710
...
...
@@ -9,7 +9,7 @@ __revision__ = "$Id$"
import
os
,
string
,
re
from
types
import
*
from
distutils.core
import
Command
from
distutils.core
import
Command
,
DEBUG
from
distutils.util
import
get_platform
,
write_file
from
distutils.errors
import
*
...
...
@@ -247,11 +247,12 @@ class bdist_rpm (Command):
def
run
(
self
):
print
"before _get_package_data():"
print
"vendor ="
,
self
.
vendor
print
"packager ="
,
self
.
packager
print
"doc_files ="
,
self
.
doc_files
print
"changelog ="
,
self
.
changelog
if
DEBUG
:
print
"before _get_package_data():"
print
"vendor ="
,
self
.
vendor
print
"packager ="
,
self
.
packager
print
"doc_files ="
,
self
.
doc_files
print
"changelog ="
,
self
.
changelog
# make directories
if
self
.
spec_only
:
...
...
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