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
f4333d04
Kaydet (Commit)
f4333d04
authored
Mar 27, 2019
tarafından
hliu0
Kaydeden (comit)
Victor Stinner
Mar 27, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-31904: Fix test_utf8_mode on VxWorks (GH-12428)
Python always use UTF-8 on VxWorks.
üst
34ef64fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
test_utf8_mode.py
Lib/test/test_utf8_mode.py
+2
-2
2019-03-19-17-39-25.bpo-31904.QxhhRx.rst
...EWS.d/next/Tests/2019-03-19-17-39-25.bpo-31904.QxhhRx.rst
+1
-0
No files found.
Lib/test/test_utf8_mode.py
Dosyayı görüntüle @
f4333d04
...
...
@@ -12,7 +12,7 @@ from test.support.script_helper import assert_python_ok, assert_python_failure
MS_WINDOWS
=
(
sys
.
platform
==
'win32'
)
POSIX_LOCALES
=
(
'C'
,
'POSIX'
)
VXWORKS
=
(
sys
.
platform
==
"vxworks"
)
class
UTF8ModeTests
(
unittest
.
TestCase
):
DEFAULT_ENV
=
{
...
...
@@ -225,7 +225,7 @@ class UTF8ModeTests(unittest.TestCase):
with
self
.
subTest
(
LC_ALL
=
loc
):
check
(
'utf8'
,
[
arg_utf8
],
LC_ALL
=
loc
)
if
sys
.
platform
==
'darwin'
or
support
.
is_android
:
if
sys
.
platform
==
'darwin'
or
support
.
is_android
or
VXWORKS
:
c_arg
=
arg_utf8
elif
sys
.
platform
.
startswith
(
"aix"
):
c_arg
=
arg
.
decode
(
'iso-8859-1'
)
...
...
Misc/NEWS.d/next/Tests/2019-03-19-17-39-25.bpo-31904.QxhhRx.rst
0 → 100644
Dosyayı görüntüle @
f4333d04
Fix test_utf8_mode on VxWorks: Python always use UTF-8 on VxWorks.
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