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
1f6176e7
Kaydet (Commit)
1f6176e7
authored
Şub 06, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix some name errors in Mac modules.
üst
7e1902bc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
MediaDescr.py
Lib/plat-mac/Carbon/MediaDescr.py
+2
-2
bundlebuilder.py
Lib/plat-mac/bundlebuilder.py
+1
-1
macostools.py
Lib/plat-mac/macostools.py
+1
-0
No files found.
Lib/plat-mac/Carbon/MediaDescr.py
Dosyayı görüntüle @
1f6176e7
...
...
@@ -15,7 +15,7 @@ class _MediaDescriptionCodec:
data
=
data
[:
self
.
size
]
values
=
struct
.
unpack
(
self
.
fmt
,
data
)
if
len
(
values
)
!=
len
(
self
.
names
):
raise
Error
,
(
'Format length does not match number of names'
,
descr
)
raise
Error
,
(
'Format length does not match number of names'
)
rv
=
{}
for
i
in
range
(
len
(
values
)):
name
=
self
.
names
[
i
]
...
...
@@ -26,7 +26,7 @@ class _MediaDescriptionCodec:
rv
[
name
]
=
value
return
rv
def
encode
(
dict
):
def
encode
(
self
,
dict
):
list
=
[
self
.
fmt
]
for
name
in
self
.
names
:
if
type
(
name
)
==
type
(()):
...
...
Lib/plat-mac/bundlebuilder.py
Dosyayı görüntüle @
1f6176e7
...
...
@@ -432,7 +432,7 @@ class AppBuilder(BundleBuilder):
pass
elif
self
.
mainprogram
is
not
None
:
self
.
name
=
os
.
path
.
splitext
(
os
.
path
.
basename
(
self
.
mainprogram
))[
0
]
elif
executable
is
not
None
:
elif
self
.
executable
is
not
None
:
self
.
name
=
os
.
path
.
splitext
(
os
.
path
.
basename
(
self
.
executable
))[
0
]
if
self
.
name
[
-
4
:]
!=
".app"
:
self
.
name
+=
".app"
...
...
Lib/plat-mac/macostools.py
Dosyayı görüntüle @
1f6176e7
...
...
@@ -10,6 +10,7 @@ warnpy3k("In 3.x, the macostools module is removed.", stacklevel=2)
from
Carbon
import
Res
from
Carbon
import
File
,
Files
import
os
import
errno
import
MacOS
try
:
openrf
=
MacOS
.
openrf
...
...
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