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
ef6fb3dc
Kaydet (Commit)
ef6fb3dc
authored
Eyl 23, 2005
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport fix for patch #1297028, cjkcodecs does not initialize type pointer
üst
d115df02
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
0 deletions
+28
-0
NEWS
Misc/NEWS
+24
-0
multibytecodec.c
Modules/cjkcodecs/multibytecodec.c
+4
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
ef6fb3dc
...
@@ -4,6 +4,30 @@ Python News
...
@@ -4,6 +4,30 @@ Python News
(
editors
:
check
NEWS
.
help
for
information
about
editing
NEWS
using
ReST
.)
(
editors
:
check
NEWS
.
help
for
information
about
editing
NEWS
using
ReST
.)
What
's New in Python 2.4.2 final?
=================================
*Release date: XX-SEP-2005*
Core and builtins
-----------------
Extension Modules
-----------------
- Patch #1297028: fix segfault if call type on MultibyteCodec,
MultibyteStreamReader, or MultibyteStreamWriter.
Tests
-----
Build
-----
What'
s
New
in
Python
2.4.2
c1
What'
s
New
in
Python
2.4.2
c1
============================
============================
...
...
Modules/cjkcodecs/multibytecodec.c
Dosyayı görüntüle @
ef6fb3dc
...
@@ -1265,6 +1265,10 @@ static struct PyMethodDef __methods[] = {
...
@@ -1265,6 +1265,10 @@ static struct PyMethodDef __methods[] = {
void
void
init_multibytecodec
(
void
)
init_multibytecodec
(
void
)
{
{
MultibyteCodec_Type
.
ob_type
=
&
PyType_Type
;
MultibyteStreamReader_Type
.
ob_type
=
&
PyType_Type
;
MultibyteStreamWriter_Type
.
ob_type
=
&
PyType_Type
;
Py_InitModule
(
"_multibytecodec"
,
__methods
);
Py_InitModule
(
"_multibytecodec"
,
__methods
);
if
(
PyErr_Occurred
())
if
(
PyErr_Occurred
())
...
...
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