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
977be3e7
Kaydet (Commit)
977be3e7
authored
Agu 02, 2015
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #23652: Make the select module compile against LSB headers.
Initial patch by Matt Frank.
üst
9de47079
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
0 deletions
+15
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+4
-0
selectmodule.c
Modules/selectmodule.c
+10
-0
No files found.
Misc/ACKS
Dosyayı görüntüle @
977be3e7
...
...
@@ -429,6 +429,7 @@ Doug Fort
Chris Foster
John Fouhy
Andrew Francis
Matt Frank
Stefan Franke
Martin Franklin
Kent Frazier
...
...
Misc/NEWS
Dosyayı görüntüle @
977be3e7
...
...
@@ -34,6 +34,10 @@ Core and Builtins
Library
-------
- Issue #23652: Make it possible to compile the select module against the
libc headers from the Linux Standard Base, which do not include some
EPOLL macros. Initial patch by Matt Frank.
- Issue #15138: Speed up base64.urlsafe_b64{en,de}code considerably.
- Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. Patch
...
...
Modules/selectmodule.c
Dosyayı görüntüle @
977be3e7
...
...
@@ -1874,11 +1874,21 @@ initselect(void)
PyModule_AddIntConstant
(
m
,
"EPOLLONESHOT"
,
EPOLLONESHOT
);
#endif
/* PyModule_AddIntConstant(m, "EPOLL_RDHUP", EPOLLRDHUP); */
#ifdef EPOLLRDNORM
PyModule_AddIntConstant
(
m
,
"EPOLLRDNORM"
,
EPOLLRDNORM
);
#endif
#ifdef EPOLLRDBAND
PyModule_AddIntConstant
(
m
,
"EPOLLRDBAND"
,
EPOLLRDBAND
);
#endif
#ifdef EPOLLWRNORM
PyModule_AddIntConstant
(
m
,
"EPOLLWRNORM"
,
EPOLLWRNORM
);
#endif
#ifdef EPOLLWRBAND
PyModule_AddIntConstant
(
m
,
"EPOLLWRBAND"
,
EPOLLWRBAND
);
#endif
#ifdef EPOLLMSG
PyModule_AddIntConstant
(
m
,
"EPOLLMSG"
,
EPOLLMSG
);
#endif
#endif
/* HAVE_EPOLL */
#ifdef HAVE_KQUEUE
...
...
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