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
efaf6290
Kaydet (Commit)
efaf6290
authored
Agu 26, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use unicode (hope it's right, I can't test it)
üst
e7606314
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
nismodule.c
Modules/nismodule.c
+5
-5
No files found.
Modules/nismodule.c
Dosyayı görüntüle @
efaf6290
...
...
@@ -115,8 +115,8 @@ nis_foreach (int instatus, char *inkey, int inkeylen, char *inval,
if
(
invallen
>
0
&&
inval
[
invallen
-
1
]
==
'\0'
)
invallen
--
;
}
key
=
Py
String
_FromStringAndSize
(
inkey
,
inkeylen
);
val
=
Py
String
_FromStringAndSize
(
inval
,
invallen
);
key
=
Py
Unicode
_FromStringAndSize
(
inkey
,
inkeylen
);
val
=
Py
Unicode
_FromStringAndSize
(
inval
,
invallen
);
if
(
key
==
NULL
||
val
==
NULL
)
{
/* XXX error -- don't know how to handle */
PyErr_Clear
();
...
...
@@ -146,7 +146,7 @@ nis_get_default_domain (PyObject *self)
if
((
err
=
yp_get_default_domain
(
&
domain
))
!=
0
)
return
nis_error
(
err
);
res
=
Py
String
_FromStringAndSize
(
domain
,
strlen
(
domain
));
res
=
Py
Unicode
_FromStringAndSize
(
domain
,
strlen
(
domain
));
return
res
;
}
...
...
@@ -178,7 +178,7 @@ nis_match (PyObject *self, PyObject *args, PyObject *kwdict)
len
--
;
if
(
err
!=
0
)
return
nis_error
(
err
);
res
=
Py
String
_FromStringAndSize
(
match
,
len
);
res
=
Py
Unicode
_FromStringAndSize
(
match
,
len
);
free
(
match
);
return
res
;
}
...
...
@@ -398,7 +398,7 @@ nis_maps (PyObject *self, PyObject *args, PyObject *kwdict)
if
((
list
=
PyList_New
(
0
))
==
NULL
)
return
NULL
;
for
(
maps
=
maps
;
maps
;
maps
=
maps
->
next
)
{
PyObject
*
str
=
Py
String
_FromString
(
maps
->
map
);
PyObject
*
str
=
Py
Unicode
_FromString
(
maps
->
map
);
if
(
!
str
||
PyList_Append
(
list
,
str
)
<
0
)
{
Py_DECREF
(
list
);
...
...
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