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
03d1b181
Kaydet (Commit)
03d1b181
authored
Tem 31, 2001
tarafından
Marc-André Lemburg
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Enable PyOS_snprintf() et al. during alpha phase of 2.2.0 and
add another use case to the socketmodule.
üst
77707673
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
10 deletions
+9
-10
pyerrors.h
Include/pyerrors.h
+7
-0
socketmodule.c
Modules/socketmodule.c
+2
-10
No files found.
Include/pyerrors.h
Dosyayı görüntüle @
03d1b181
...
@@ -115,6 +115,13 @@ extern DL_IMPORT(PyObject *) PyErr_ProgramText(char *, int);
...
@@ -115,6 +115,13 @@ extern DL_IMPORT(PyObject *) PyErr_ProgramText(char *, int);
# define snprintf _snprintf
# define snprintf _snprintf
# define vsnprintf _vsnprintf
# define vsnprintf _vsnprintf
#endif
#endif
/* Always enable the fallback solution during the 2.2.0 alpha cycle
for enhanced testing */
#if PY_VERSION_HEX < 0x020200B0
# undef HAVE_SNPRINTF
#endif
#ifndef HAVE_SNPRINTF
#ifndef HAVE_SNPRINTF
#include <stdarg.h>
#include <stdarg.h>
extern
DL_IMPORT
(
int
)
PyOS_snprintf
(
char
*
str
,
size_t
size
,
const
char
*
format
,
...);
extern
DL_IMPORT
(
int
)
PyOS_snprintf
(
char
*
str
,
size_t
size
,
const
char
*
format
,
...);
...
...
Modules/socketmodule.c
Dosyayı görüntüle @
03d1b181
...
@@ -2349,11 +2349,7 @@ PySocket_getaddrinfo(PyObject *self, PyObject *args)
...
@@ -2349,11 +2349,7 @@ PySocket_getaddrinfo(PyObject *self, PyObject *args)
return
NULL
;
return
NULL
;
}
}
if
(
PyInt_Check
(
pobj
))
{
if
(
PyInt_Check
(
pobj
))
{
#ifndef HAVE_SNPRINTF
PyOS_snprintf
(
pbuf
,
sizeof
(
pbuf
),
"%ld"
,
PyInt_AsLong
(
pobj
));
sprintf
(
pbuf
,
"%ld"
,
PyInt_AsLong
(
pobj
));
#else
snprintf
(
pbuf
,
sizeof
(
pbuf
),
"%ld"
,
PyInt_AsLong
(
pobj
));
#endif
pptr
=
pbuf
;
pptr
=
pbuf
;
}
else
if
(
PyString_Check
(
pobj
))
{
}
else
if
(
PyString_Check
(
pobj
))
{
pptr
=
PyString_AsString
(
pobj
);
pptr
=
PyString_AsString
(
pobj
);
...
@@ -2424,11 +2420,7 @@ PySocket_getnameinfo(PyObject *self, PyObject *args)
...
@@ -2424,11 +2420,7 @@ PySocket_getnameinfo(PyObject *self, PyObject *args)
n
=
PyArg_ParseTuple
(
sa
,
"si|ii"
,
&
hostp
,
&
port
,
&
flowinfo
,
scope_id
);
n
=
PyArg_ParseTuple
(
sa
,
"si|ii"
,
&
hostp
,
&
port
,
&
flowinfo
,
scope_id
);
if
(
n
==
0
)
if
(
n
==
0
)
goto
fail
;
goto
fail
;
#ifdef HAVE_SNPRINTF
PyOS_snprintf
(
pbuf
,
sizeof
(
pbuf
),
"%d"
,
port
);
snprintf
(
pbuf
,
sizeof
(
pbuf
),
"%d"
,
port
);
#else
sprintf
(
pbuf
,
"%d"
,
port
);
#endif
memset
(
&
hints
,
0
,
sizeof
(
hints
));
memset
(
&
hints
,
0
,
sizeof
(
hints
));
hints
.
ai_family
=
PF_UNSPEC
;
hints
.
ai_family
=
PF_UNSPEC
;
error
=
getaddrinfo
(
hostp
,
pbuf
,
&
hints
,
&
res
);
error
=
getaddrinfo
(
hostp
,
pbuf
,
&
hints
,
&
res
);
...
...
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