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
95195b35
Kaydet (Commit)
95195b35
authored
Ock 19, 2013
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL.
Patch by Jeffrey Armstrong.
üst
9101e23f
986a56ce
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
selectmodule.c
Modules/selectmodule.c
+2
-2
No files found.
Misc/ACKS
Dosyayı görüntüle @
95195b35
...
...
@@ -45,6 +45,7 @@ Jon Anglin
Heidi Annexstad
Éric Araujo
Alicia Arlen
Jeffrey Armstrong
Jason Asbahr
David Ascher
Chris AtLee
...
...
Misc/NEWS
Dosyayı görüntüle @
95195b35
...
...
@@ -517,6 +517,9 @@ Tests
Build
-----
- Issue #16953: Fix socket module compilation on platforms with
HAVE_BROKEN_POLL. Patch by Jeffrey Armstrong.
- Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
- Cross compiling needs host and build settings. configure no longer
...
...
Modules/selectmodule.c
Dosyayı görüntüle @
95195b35
...
...
@@ -2098,7 +2098,7 @@ descriptors can be used.");
static
PyMethodDef
select_methods
[]
=
{
{
"select"
,
select_select
,
METH_VARARGS
,
select_doc
},
#if
def HAVE_POLL
#if
defined(HAVE_POLL) && !defined(HAVE_BROKEN_POLL)
{
"poll"
,
select_poll
,
METH_NOARGS
,
poll_doc
},
#endif
/* HAVE_POLL */
#ifdef HAVE_SYS_DEVPOLL_H
...
...
@@ -2148,7 +2148,7 @@ PyInit_select(void)
PyModule_AddIntConstant
(
m
,
"PIPE_BUF"
,
PIPE_BUF
);
#endif
#if defined(HAVE_POLL)
#if defined(HAVE_POLL)
&& !defined(HAVE_BROKEN_POLL)
#ifdef __APPLE__
if
(
select_have_broken_poll
())
{
if
(
PyObject_DelAttrString
(
m
,
"poll"
)
==
-
1
)
{
...
...
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