Victor Stinner
|
329e492570
|
Issue #20656: Restore explicit downcast in select_select().
Cast from time_t (64 bit) to long (32 bit). It should fix a compiler warning.
|
2014-02-18 09:30:33 +01:00 |
|
Victor Stinner
|
5a8e5796f1
|
Close #20656: Fix select.select() on OpenBSD 64-bit
|
2014-02-18 01:35:40 +01:00 |
|
Victor Stinner
|
3c1b379ebd
|
Issue #20320: select.select() and select.kqueue.control() now round the timeout
aways from zero, instead of rounding towards zero.
It should make test_asyncio more reliable, especially test_timeout_rounding() test.
|
2014-02-17 00:02:43 +01:00 |
|
Serhiy Storchaka
|
dfe98a102e
|
Issue #20437: Fixed 22 potential bugs when deleting objects references.
|
2014-02-09 13:46:20 +02:00 |
|
Serhiy Storchaka
|
505ff755d7
|
Issue #20437: Fixed 21 potential bugs when deleting objects references.
|
2014-02-09 13:33:53 +02:00 |
|
Victor Stinner
|
dcd9740ad2
|
Issue #20452: select and selectors round (again) timeout away from zero for
poll and epoll
Improve also debug info to analyze the issue
|
2014-01-31 12:12:53 +01:00 |
|
Victor Stinner
|
38c72bd199
|
(Merge 3.3) Issue #20311: Revert 033137c12d88 (02f9db3e684e),
select.epoll.poll() rounds again the timeout towards zero
|
2014-01-25 14:40:04 +01:00 |
|
Victor Stinner
|
933209689e
|
Issue #20311: Revert 033137c12d88, select.epoll.poll() rounds again the timeout
towards zero
|
2014-01-25 14:37:50 +01:00 |
|
Victor Stinner
|
09354fd606
|
(Merge 3.3) Issue #20311: select.epoll.poll() now rounds the timeout away from
zero, instead of rounding towards zero. For example, a timeout of one
microsecond is now rounded to one millisecond, instead of being rounded to
zero.
|
2014-01-21 01:42:11 +01:00 |
|
Victor Stinner
|
665486e0e7
|
Issue #20311: select.epoll.poll() now rounds the timeout away from zero,
instead of rounding towards zero. For example, a timeout of one microsecond is
now rounded to one millisecond, instead of being rounded to zero.
|
2014-01-21 01:41:00 +01:00 |
|
Christian Heimes
|
af01f66817
|
Issue #16136: Remove VMS support and VMS-related code
|
2013-12-21 16:19:10 +01:00 |
|
Serhiy Storchaka
|
03241e8017
|
Issue #17919: Fixed integer overflow in the eventmask parameter.
|
2013-12-14 19:18:39 +02:00 |
|
Serhiy Storchaka
|
5da107ac72
|
Issue #17919: Fixed integer overflow in the eventmask parameter.
|
2013-12-14 19:12:02 +02:00 |
|
Serhiy Storchaka
|
cb1c4c8c22
|
Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.
|
2013-12-13 12:08:55 +02:00 |
|
Serhiy Storchaka
|
3ad2d70947
|
Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.
|
2013-12-13 12:08:01 +02:00 |
|
Guido van Rossum
|
ee07b94788
|
Fix indentation of switch cases.
|
2013-12-06 17:46:22 -08:00 |
|
Victor Stinner
|
7613542a27
|
Issue #19437: Fix select.epoll.poll(), fix code handling PyMem_New() error
The bug was introduced with the select.epoll module! So it's 5 years old :-)
|
2013-10-30 19:57:52 +01:00 |
|
Victor Stinner
|
d72fe89b80
|
select.epoll.fromfd(fd) must be not change the inheritable flag of the file
descriptor
|
2013-08-28 12:22:39 +02:00 |
|
Victor Stinner
|
daf455554b
|
Issue #18571: Implementation of the PEP 446: file descriptors and file handles
are now created non-inheritable; add functions os.get/set_inheritable(),
os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
|
2013-08-28 00:53:59 +02:00 |
|
Christian Heimes
|
9dd279a3ac
|
Issue #11973: Fix a problem in kevent. The flags and fflags fields are now
properly handled as unsigned.
|
2013-08-25 14:57:38 +02:00 |
|
Christian Heimes
|
f1fe159822
|
Issue #11973: Fix a problem in kevent. The flags and fflags fields are now
properly handled as unsigned.
|
2013-08-25 14:57:00 +02:00 |
|
Richard Oudkerk
|
a93bf7b9a6
|
Fix devpoll_dealloc().
|
2013-08-22 14:03:44 +01:00 |
|
Richard Oudkerk
|
168d59b669
|
Move definition of devpoll_internal_close() before devpoll_close().
|
2013-08-22 13:31:15 +01:00 |
|
Richard Oudkerk
|
069d65c35a
|
Fix compilation of select module on Solaris.
|
2013-08-22 13:04:23 +01:00 |
|
Victor Stinner
|
13423c3726
|
Close #18794: Add a fileno() method and a closed attribute to select.devpoll
objects.
Add also tests on fileno() method and closed attribute of select.epoll and select.kqueue.
|
2013-08-22 00:19:50 +02:00 |
|