1. 06 Tem, 2018 12 kayıt (commit)
  2. 05 Tem, 2018 8 kayıt (commit)
  3. 04 Tem, 2018 9 kayıt (commit)
  4. 03 Tem, 2018 4 kayıt (commit)
  5. 02 Tem, 2018 2 kayıt (commit)
  6. 01 Tem, 2018 1 kayıt (commit)
  7. 30 Haz, 2018 4 kayıt (commit)
    • Tal Einat's avatar
    • INADA Naoki's avatar
      Doc: Remove unused image file (GH-8027) · fe524df3
      INADA Naoki yazdı
      fe524df3
    • Serhiy Storchaka's avatar
      bpo-25862: Fix several bugs in the _io module. (GH-8026) · fdb5a50e
      Serhiy Storchaka yazdı
      They can be exposed when some C API calls fail due to lack of
      memory.
      
      * Failed Py_BuildValue() could cause an assertion error in the
        following TextIOWrapper.tell().
      * input_chunk could be decrefed twice in TextIOWrapper.seek()
        after failed Py_BuildValue().
      * initvalue could leak in StringIO.__getstate__() after failed
        PyDict_Copy().
      fdb5a50e
    • Tal Einat's avatar
      bpo-32568: make select.epoll() and its docs consistent (#7840) · 0cdf5f42
      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.
      0cdf5f42