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
7e75f1aa
Kaydet (Commit)
7e75f1aa
authored
Nis 15, 2006
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1191065: Fix preprocessor problems on systems where recvfrom
is a macro.
üst
c90b17ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
6 deletions
+11
-6
NEWS
Misc/NEWS
+3
-0
socketmodule.c
Modules/socketmodule.c
+8
-6
No files found.
Misc/NEWS
Dosyayı görüntüle @
7e75f1aa
...
...
@@ -48,6 +48,9 @@ Core and builtins
Extension Modules
-----------------
- Patch #1191065: Fix preprocessor problems on systems where recvfrom
is a macro.
- Bug #1467952: os.listdir() now correctly raises an error if readdir()
fails with an error condition.
...
...
Modules/socketmodule.c
Dosyayı görüntüle @
7e75f1aa
...
...
@@ -2208,18 +2208,20 @@ sock_recvfrom(PySocketSockObject *s, PyObject *args)
Py_BEGIN_ALLOW_THREADS
memset
(
&
addrbuf
,
0
,
addrlen
);
timeout
=
internal_select
(
s
,
0
);
if
(
!
timeout
)
n
=
recvfrom
(
s
->
sock_fd
,
PyString_AS_STRING
(
buf
),
len
,
flags
,
if
(
!
timeout
)
{
#ifndef MS_WINDOWS
#if defined(PYOS_OS2) && !defined(PYCC_GCC)
(
struct
sockaddr
*
)
&
addrbuf
,
&
addrlen
n
=
recvfrom
(
s
->
sock_fd
,
PyString_AS_STRING
(
buf
),
len
,
flags
,
(
struct
sockaddr
*
)
&
addrbuf
,
&
addrlen
);
#else
(
void
*
)
&
addrbuf
,
&
addrlen
n
=
recvfrom
(
s
->
sock_fd
,
PyString_AS_STRING
(
buf
),
len
,
flags
,
(
void
*
)
&
addrbuf
,
&
addrlen
);
#endif
#else
(
struct
sockaddr
*
)
&
addrbuf
,
&
addrlen
n
=
recvfrom
(
s
->
sock_fd
,
PyString_AS_STRING
(
buf
),
len
,
flags
,
(
struct
sockaddr
*
)
&
addrbuf
,
&
addrlen
);
#endif
);
}
Py_END_ALLOW_THREADS
if
(
timeout
)
{
...
...
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