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
1824544d
Kaydet (Commit)
1824544d
authored
Agu 02, 2015
tarafından
Zachary Ware
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #23652: Merge with 3.4
üst
dba51b83
3e776776
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
NEWS
Misc/NEWS
+4
-0
selectmodule.c
Modules/selectmodule.c
+11
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
1824544d
...
...
@@ -13,6 +13,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. Patch by Matt Frank.
- Issue #22932: Fix timezones in email.utils.formatdate.
Patch from Dmitry Shachnev.
...
...
Modules/selectmodule.c
Dosyayı görüntüle @
1824544d
...
...
@@ -2479,11 +2479,22 @@ PyInit_select(void)
PyModule_AddIntMacro
(
m
,
EPOLLONESHOT
);
#endif
/* PyModule_AddIntConstant(m, "EPOLL_RDHUP", EPOLLRDHUP); */
#ifdef EPOLLRDNORM
PyModule_AddIntMacro
(
m
,
EPOLLRDNORM
);
#endif
#ifdef EPOLLRDBAND
PyModule_AddIntMacro
(
m
,
EPOLLRDBAND
);
#endif
#ifdef EPOLLWRNORM
PyModule_AddIntMacro
(
m
,
EPOLLWRNORM
);
#endif
#ifdef EPOLLWRBAND
PyModule_AddIntMacro
(
m
,
EPOLLWRBAND
);
#endif
#ifdef EPOLLMSG
PyModule_AddIntMacro
(
m
,
EPOLLMSG
);
#endif
#ifdef EPOLL_CLOEXEC
PyModule_AddIntMacro
(
m
,
EPOLL_CLOEXEC
);
...
...
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