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
f9b95d4d
Kaydet (Commit)
f9b95d4d
authored
Agu 07, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1768976, Fix for failing test_scriptpackages (untested but looks good)
üst
e6568694
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
aetools.py
Lib/plat-mac/aetools.py
+2
-3
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/plat-mac/aetools.py
Dosyayı görüntüle @
f9b95d4d
...
...
@@ -21,7 +21,6 @@ files: the pack stuff from aepack, the objects from aetypes.
"""
from
types
import
*
from
Carbon
import
AE
from
Carbon
import
Evt
from
Carbon
import
AppleEvents
...
...
@@ -167,11 +166,11 @@ class TalkTo:
self
.
target_signature
=
None
if
signature
is
None
:
signature
=
self
.
_signature
if
type
(
signature
)
==
AEDescType
:
if
isinstance
(
signature
,
AEDescType
)
:
self
.
target
=
signature
elif
hasattr
(
signature
,
'__aepack__'
):
self
.
target
=
signature
.
__aepack__
()
elif
type
(
signature
)
==
StringType
and
len
(
signature
)
==
4
:
elif
isinstance
(
signature
,
str
)
and
len
(
signature
)
==
4
:
self
.
target
=
AE
.
AECreateDesc
(
AppleEvents
.
typeApplSignature
,
signature
)
self
.
target_signature
=
signature
else
:
...
...
Misc/ACKS
Dosyayı görüntüle @
f9b95d4d
...
...
@@ -524,6 +524,7 @@ Steve Purcell
Brian Quinlan
Anders Qvist
Burton Radons
Antti Rasinen
Eric Raymond
Edward K. Ream
Marc Recht
...
...
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