- 30 Haz, 2018 2 kayıt (commit)
-
-
Tal Einat yazdı
-
Tal Einat yazdı
* `flags` is indeed deprecated, but there is a validation on its value for backwards compatibility reasons. This adds mention of this in the docs. * The docs say that `sizehint` is deprecated and ignored, but it is still used when `epoll_create1()` is unavailable. This adds mention of this in the docs. * `sizehint=-1` is acceptable again, and is replaced with `FD_SETSIZE-1`. This is needed to have a default value available at the Python level, since `FD_SETSIZE` is not exposed to Python. (see: bpo-31938) * Reject `sizehint=0` since it is invalid to pass on to `epoll_create()`. The relevant tests have also been updated.
-
- 06 Ara, 2017 1 kayıt (commit)
-
-
Sanyam Khurana yazdı
-
- 12 Nis, 2017 1 kayıt (commit)
-
-
NAKAMURA Osamu yazdı
-
- 19 Eki, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 11 Eyl, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
-
- 19 Tem, 2016 3 kayıt (commit)
-
-
Berker Peksag yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 11 Haz, 2016 1 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
-
- 07 May, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 15 Haz, 2015 1 kayıt (commit)
-
-
Senthil Kumaran yazdı
Related Issues: #issue21528 #issue24453
-
- 31 Mar, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
- 30 Mar, 2015 3 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.
-
- 29 Eki, 2014 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 20 May, 2014 1 kayıt (commit)
-
-
Donald Stufft yazdı
-
- 31 Mar, 2014 2 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
Andrew Svetlov yazdı
-
- 12 Ock, 2014 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 31 Ara, 2013 1 kayıt (commit)
-
-
R David Murray yazdı
Also reworded the description of the feature in the docs.
-
- 04 Eyl, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 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().
-
- 23 Agu, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 21 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
objects. Add also tests on fileno() method and closed attribute of select.epoll and select.kqueue.
-
- 15 Ara, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by Serhiy Storchaka.
-
- 24 Haz, 2012 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 22 May, 2012 1 kayıt (commit)
-
-
Hynek Schlawack yazdı
Reverts some changes of d13fdd97cc8e.
-
- 21 May, 2012 1 kayıt (commit)
-
-
Hynek Schlawack yazdı
-
- 14 Ock, 2012 1 kayıt (commit)
-
-
Sandro Tosi yazdı
-
- 27 Ara, 2011 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 15 Kas, 2011 1 kayıt (commit)
-
-
Jesus Cea yazdı
-
- 14 Kas, 2011 1 kayıt (commit)
-
-
Jesus Cea yazdı
-
- 12 Eki, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 25 Ock, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
- 06 Eki, 2010 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82879 | stefan.krah | 2010-07-14 12:16:11 +0200 (Mi, 14 Jul 2010) | 3 lines High byte is the exit status. ........ r82958 | jean-paul.calderone | 2010-07-18 18:13:27 +0200 (So, 18 Jul 2010) | 1 line There is no method named "register(fd, eventmask)"; fix markup to just indicate this is code. ........ r82959 | jean-paul.calderone | 2010-07-18 18:30:31 +0200 (So, 18 Jul 2010) | 1 line Document the extra epoll flags ........ r83109 | brett.cannon | 2010-07-23 18:58:21 +0200 (Fr, 23 Jul 2010) | 4 lines Mention in the fnmatch docs that meta-characters in translate cannot be quoted. Closes issue 9358. Thanks to Brian Brazil for the patch. ........ r83127 | martin.v.loewis | 2010-07-24 12:09:11 +0200 (Sa, 24 Jul 2010) | 2 lines Put listdir default argument into declaration. ........ r83224 | mark.dickinson | 2010-07-29 15:56:56 +0200 (Do, 29 Jul 2010) | 1 line Fix typo. ........ r83747 | gerhard.haering | 2010-08-06 08:12:05 +0200 (Fr, 06 Aug 2010) | 2 lines Issue #3854: Documented using the sqlite3 module with multiple threads. ........ r84162 | victor.stinner | 2010-08-18 00:01:02 +0200 (Mi, 18 Aug 2010) | 3 lines Replace :func: by :cfunc: To get links to the C functions ........
-