Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1824544d
Commit
1824544d
authored
Aug 01, 2015
by
Zachary Ware
Browse files
Options
Browse Files
Download
Plain Diff
Issue #23652: Merge with 3.4
parents
dba51b83
3e776776
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
Misc/NEWS
Misc/NEWS
+4
-0
Modules/selectmodule.c
Modules/selectmodule.c
+11
-0
No files found.
Misc/NEWS
View file @
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
View file @
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