- 19 Nis, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
raised an error. Replace them with using concrete types API that never fails if appropriate.
-
- 16 Nis, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 12 Mar, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
FreeBSD is the only platforms with unsigned FD_SETSIZE.
-
- 23 Ock, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
possible. Patch is writen with Coccinelle.
-
- 16 Ara, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 26 Eyl, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
EPOLL_CLOEXEC is the only value that can be passed to epoll_create1() and we are passing EPOLL_CLOEXEC unconditionally since Python 3.4.
-
- 14 Eyl, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
Patch by Ed Schouten.
-
- 06 Eyl, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 08 Agu, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
-
- 19 Tem, 2016 3 kayıt (commit)
-
-
Berker Peksag yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 15 May, 2016 1 kayıt (commit)
-
-
Senthil Kumaran yazdı
-
- 25 Ara, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 11 Eki, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 02 Agu, 2015 1 kayıt (commit)
-
-
Zachary Ware yazdı
Patch by Matt Frank.
-
- 31 Mar, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
- 30 Mar, 2015 4 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
timeout when interrupted by a signal, except if the signal handler raises an exception. This change is part of the PEP 475. The asyncore and selectors module doesn't catch the InterruptedError exception anymore when calling select.select(), since this function should not raise InterruptedError anymore.
-
Victor Stinner yazdı
All these functions only accept positive timeouts, so this change has no effect in practice.
-
- 28 Mar, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 19 Mar, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
by a signal (EINTR). Modify devpoll_flush() to use _Py_write() instead of calling directly write().
-
- 17 Mar, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
* _Py_open() now raises exceptions on error. If open() fails, it raises an OSError with the filename. * _Py_open() now releases the GIL while calling open() * Add _Py_open_noraise() when _Py_open() cannot be used because the GIL is not held
-
- 18 Şub, 2014 2 kayıt (commit)
-
-
Victor Stinner yazdı
Cast from time_t (64 bit) to long (32 bit). It should fix a compiler warning.
-
Victor Stinner yazdı
-
- 16 Şub, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
aways from zero, instead of rounding towards zero. It should make test_asyncio more reliable, especially test_timeout_rounding() test.
-
- 09 Şub, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 31 Ock, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
poll and epoll Improve also debug info to analyze the issue
-
- 25 Ock, 2014 2 kayıt (commit)
-
-
Victor Stinner yazdı
towards zero
-
Georg Brandl yazdı
-
- 21 Ock, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
instead of rounding towards zero. For example, a timeout of one microsecond is now rounded to one millisecond, instead of being rounded to zero.
-
- 21 Ara, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 14 Ara, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 13 Ara, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 07 Ara, 2013 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 30 Eki, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
The bug was introduced with the select.epoll module! So it's 5 years old :-)
-
- 28 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
descriptor
-
- 27 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
-