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
07b35371
Kaydet (Commit)
07b35371
authored
Tem 13, 2011
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #12549: Correct test_platform to not fail when OS X returns 'x86_64'
as the processor type on some Mac systems.
üst
cb41cda8
58e3350b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
platform.rst
Doc/library/platform.rst
+0
-3
platform.py
Lib/platform.py
+1
-0
test_platform.py
Lib/test/test_platform.py
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/platform.rst
Dosyayı görüntüle @
07b35371
...
...
@@ -232,9 +232,6 @@ Mac OS Platform
Entries which cannot be determined are set to ``''``. All tuple entries are
strings.
Documentation for the underlying :c:func:`gestalt` API is available online at
http://www.rgaros.nl/gestalt/.
Unix Platforms
--------------
...
...
Lib/platform.py
Dosyayı görüntüle @
07b35371
...
...
@@ -679,6 +679,7 @@ def _mac_ver_gestalt():
0x2
:
'PowerPC'
,
0xa
:
'i386'
}
.
get
(
sysa
,
''
)
versioninfo
=
(
''
,
''
,
''
)
return
release
,
versioninfo
,
machine
def
_mac_ver_xml
():
...
...
Lib/test/test_platform.py
Dosyayı görüntüle @
07b35371
...
...
@@ -191,7 +191,7 @@ class PlatformTest(unittest.TestCase):
self
.
assertEqual
(
res
[
1
],
(
''
,
''
,
''
))
if
sys
.
byteorder
==
'little'
:
self
.
assert
Equal
(
res
[
2
],
'i386'
)
self
.
assert
In
(
res
[
2
],
(
'i386'
,
'x86_64'
)
)
else
:
self
.
assertEqual
(
res
[
2
],
'PowerPC'
)
...
...
Misc/NEWS
Dosyayı görüntüle @
07b35371
...
...
@@ -1020,6 +1020,9 @@ Extension Modules
Tests
-----
- Issue #12549: Correct test_platform to not fail when OS X returns '
x86_64
'
as the processor type on some Mac systems.
- Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary
failure in name resolution.
...
...
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