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
7ff034b6
Kaydet (Commit)
7ff034b6
authored
Agu 07, 2002
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed incorrect logic in determining whether we should initialize
the classes' attribute list.
üst
3cfdc340
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
gensuitemodule.py
Mac/scripts/gensuitemodule.py
+1
-2
No files found.
Mac/scripts/gensuitemodule.py
Dosyayı görüntüle @
7ff034b6
...
...
@@ -295,7 +295,7 @@ def compileaete(aete, resinfo, fname):
# Generate property dicts and element dicts for all types declared in this module
fp
.
write
(
"def getbaseclasses(v):
\n
"
)
fp
.
write
(
"
\t
if hasattr(v, '_superclassnames') and
v._superclassnames
:
\n
"
)
fp
.
write
(
"
\t
if hasattr(v, '_superclassnames') and
not hasattr(v, '_propdict')
:
\n
"
)
fp
.
write
(
"
\t\t
v._propdict = {}
\n
"
)
fp
.
write
(
"
\t\t
v._elemdict = {}
\n
"
)
fp
.
write
(
"
\t\t
for superclass in v._superclassnames:
\n
"
)
...
...
@@ -304,7 +304,6 @@ def compileaete(aete, resinfo, fname):
fp
.
write
(
"
\t\t\t
v._elemdict.update(getattr(eval(superclass), '_privelemdict', {}))
\n
"
)
fp
.
write
(
"
\t\t
v._propdict.update(v._privpropdict)
\n
"
)
fp
.
write
(
"
\t\t
v._elemdict.update(v._privelemdict)
\n
"
)
fp
.
write
(
"
\t\t
v._superclassnames = None
\n
"
)
fp
.
write
(
"
\n
"
)
fp
.
write
(
"import StdSuites
\n
"
)
if
allprecompinfo
:
...
...
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