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
cf9d3c08
Kaydet (Commit)
cf9d3c08
authored
Tem 24, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #1813: Fix codec lookup under Turkish locales.
üst
216a3bc3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
1 deletion
+17
-1
test_codecs.py
Lib/test/test_codecs.py
+14
-0
NEWS
Misc/NEWS
+2
-0
codecs.c
Python/codecs.c
+1
-1
No files found.
Lib/test/test_codecs.py
Dosyayı görüntüle @
cf9d3c08
from
test
import
support
import
unittest
import
codecs
import
locale
import
sys
,
_testcapi
,
io
class
Queue
(
object
):
...
...
@@ -1230,6 +1231,19 @@ class CodecsModuleTest(unittest.TestCase):
self
.
assertRaises
(
TypeError
,
codecs
.
getwriter
)
self
.
assertRaises
(
LookupError
,
codecs
.
getwriter
,
"__spam__"
)
def
test_lookup_issue1813
(
self
):
# Issue #1813: under Turkish locales, lookup of some codecs failed
# because 'I' is lowercased as "ı" (dotless i)
oldlocale
=
locale
.
getlocale
(
locale
.
LC_CTYPE
)
self
.
addCleanup
(
locale
.
setlocale
,
locale
.
LC_CTYPE
,
oldlocale
)
try
:
locale
.
setlocale
(
locale
.
LC_CTYPE
,
'tr_TR'
)
except
locale
.
Error
:
# Unsupported locale on this system
self
.
skipTest
(
'test needs Turkish locale'
)
c
=
codecs
.
lookup
(
'ASCII'
)
self
.
assertEqual
(
c
.
name
,
'ascii'
)
class
StreamReaderTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
cf9d3c08
...
...
@@ -37,6 +37,8 @@ Core and Builtins
Library
-------
- Issue #1813: Fix codec lookup under Turkish locales.
- Issue #12591: Improve support of "universal newlines" in the subprocess
module: the piped streams can now be properly read from or written to.
...
...
Python/codecs.c
Dosyayı görüntüle @
cf9d3c08
...
...
@@ -69,7 +69,7 @@ PyObject *normalizestring(const char *string)
if
(
ch
==
' '
)
ch
=
'-'
;
else
ch
=
tolower
(
Py_CHARMASK
(
ch
));
ch
=
Py_TOLOWER
(
Py_CHARMASK
(
ch
));
p
[
i
]
=
ch
;
}
p
[
i
]
=
'\0'
;
...
...
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