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
29273c87
Kaydet (Commit)
29273c87
authored
Şub 04, 2003
tarafından
Marc-André Lemburg
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for [ 543344 ] Interpreter crashes when recoding; suggested
by Michael Stone (mbrierst). Python 2.1.4, 2.2.2 candidate.
üst
604ade4e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
test_codecs.py
Lib/test/test_codecs.py
+9
-0
_codecsmodule.c
Modules/_codecsmodule.c
+3
-1
No files found.
Lib/test/test_codecs.py
Dosyayı görüntüle @
29273c87
...
...
@@ -27,11 +27,20 @@ class EscapeDecodeTest(unittest.TestCase):
def
test_empty_escape_decode
(
self
):
self
.
assertEquals
(
codecs
.
escape_decode
(
""
),
(
""
,
0
))
class
RecodingTest
(
unittest
.
TestCase
):
def
test_recoding
(
self
):
f
=
StringIO
.
StringIO
()
f2
=
codecs
.
EncodedFile
(
f
,
"unicode_internal"
,
"utf-8"
)
f2
.
write
(
u"a"
)
f2
.
close
()
# Python used to crash on this at exit because of a refcount
# bug in _codecsmodule.c
def
test_main
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
UTF16Test
))
suite
.
addTest
(
unittest
.
makeSuite
(
EscapeDecodeTest
))
suite
.
addTest
(
unittest
.
makeSuite
(
RecodingTest
))
test_support
.
run_suite
(
suite
)
...
...
Modules/_codecsmodule.c
Dosyayı görüntüle @
29273c87
...
...
@@ -167,8 +167,10 @@ unicode_internal_decode(PyObject *self,
&
obj
,
&
errors
))
return
NULL
;
if
(
PyUnicode_Check
(
obj
))
if
(
PyUnicode_Check
(
obj
))
{
Py_INCREF
(
obj
);
return
codec_tuple
(
obj
,
PyUnicode_GET_SIZE
(
obj
));
}
else
{
if
(
PyObject_AsReadBuffer
(
obj
,
(
const
void
**
)
&
data
,
&
size
))
return
NULL
;
...
...
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