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
19c4e5bb
Kaydet (Commit)
19c4e5bb
authored
Haz 24, 2012
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Fix test__locale on Mac; platform.uname() does not have a structseq-type interface (yet).
üst
318c56c0
988049ad
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
email.headerregistry.rst
Doc/library/email.headerregistry.rst
+1
-1
3.3.rst
Doc/whatsnew/3.3.rst
+1
-1
test__locale.py
Lib/test/test__locale.py
+1
-1
No files found.
Doc/library/email.headerregistry.rst
Dosyayı görüntüle @
19c4e5bb
...
...
@@ -16,7 +16,7 @@
necessary by the core developers.
.. versionadded:: 3.3
as a :term:`provisional module <provisional package>`
as a :term:`provisional module <provisional package>`
.
Headers are represented by customized subclasses of :class:`str`. The
particular class used to represent a given header is determined by the
...
...
Doc/whatsnew/3.3.rst
Dosyayı görüntüle @
19c4e5bb
...
...
@@ -48,7 +48,7 @@
This
article
explains
the
new
features
in
Python
3.3
,
compared
to
3.2
.
..
note
::
Alph
a
users
should
be
aware
that
this
document
is
currently
in
..
note
::
Bet
a
users
should
be
aware
that
this
document
is
currently
in
draft
form
.
It
will
be
updated
substantially
as
Python
3.3
moves
towards
release
,
so
it
's worth checking back even after reading earlier versions.
...
...
Lib/test/test__locale.py
Dosyayı görüntüle @
19c4e5bb
...
...
@@ -12,7 +12,7 @@ from platform import uname
from
test.support
import
run_unittest
if
uname
()[
0
]
==
"Darwin"
:
maj
,
min
,
mic
=
[
int
(
part
)
for
part
in
uname
()
.
release
.
split
(
"."
)]
maj
,
min
,
mic
=
[
int
(
part
)
for
part
in
uname
()
[
2
]
.
split
(
"."
)]
if
(
maj
,
min
,
mic
)
<
(
8
,
0
,
0
):
raise
unittest
.
SkipTest
(
"locale support broken for OS X < 10.4"
)
...
...
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