1. 23 Kas, 2017 1 kayıt (commit)
  2. 08 Kas, 2017 1 kayıt (commit)
  3. 01 Kas, 2017 2 kayıt (commit)
  4. 31 Eki, 2017 1 kayıt (commit)
  5. 19 Eki, 2017 1 kayıt (commit)
  6. 06 Eki, 2017 1 kayıt (commit)
  7. 05 Eki, 2017 1 kayıt (commit)
  8. 24 Eyl, 2017 1 kayıt (commit)
  9. 07 Eyl, 2017 1 kayıt (commit)
  10. 06 Eyl, 2017 1 kayıt (commit)
    • caavery's avatar
      bpo-27584: New addition of vSockets to the python socket module (#2489) · effc12f8
      caavery yazdı
      * bpo-27584: New addition of vSockets to the python socket module
      
      Support for AF_VSOCK on Linux only
      
      * bpo-27584: Fixes for V2
      
      Fixed syntax and naming problems.
      Fixed #ifdef AF_VSOCK checking
      Restored original aclocal.m4
      
      * bpo-27584: Fixes for V3
      
      Added checking for fcntl and thread modules.
      
      * bpo-27584: Fixes for V4
      
      Fixed white space error
      
      * bpo-27584: Fixes for V5
      
      Added back comma in (CID, port).
      
      * bpo-27584: Fixes for V6
      
      Added news file.
      socket.rst now reflects first Linux introduction of AF_VSOCK.
      Fixed get_cid in test_socket.py.
      Replaced PyLong_FromLong with PyLong_FromUnsignedLong in socketmodule.c
      Got rid of extra AF_VSOCK #define.
      Added sockaddr_vm to sock_addr.
      
      * bpo-27584: Fixes for V7
      
      Minor cleanup.
      
      * bpo-27584: Fixes for V8
      
      Put back #undef AF_VSOCK as it is  necessary when vm_sockets.h is not installed.
      effc12f8
  11. 05 Eyl, 2017 1 kayıt (commit)
  12. 04 Eyl, 2017 3 kayıt (commit)
  13. 18 Tem, 2017 1 kayıt (commit)
  14. 29 Haz, 2017 1 kayıt (commit)
    • INADA Naoki's avatar
      bpo-29585: Fix sysconfig.get_config_var("PYTHONFRAMEWORK") (GH-2483) · 6b42eb17
      INADA Naoki yazdı
      `PYTHONFRAMEWORK` is defined in `Makefile` and it shoulnd't be used
      in `pyconfig.h`.
      
      `sysconfig.py --generate-posix-vars` reads config vars from Makefile
      and `pyconfig.h`.  Conflicting variables should be avoided.
      
      Especially, string config variables in Makefile are unquoted, but
      in `pyconfig.h` are keep quoted.  So it should be private (starts with
      underscore).
      6b42eb17
  15. 28 Haz, 2017 1 kayıt (commit)
  16. 11 Haz, 2017 1 kayıt (commit)
    • Nick Coghlan's avatar
      bpo-28180: Implementation for PEP 538 (#659) · 6ea4186d
      Nick Coghlan yazdı
      - new PYTHONCOERCECLOCALE config setting
      - coerces legacy C locale to C.UTF-8, C.utf8 or UTF-8 by default
      - always uses C.UTF-8 on Android
      - uses `surrogateescape` on stdin and stdout in the coercion
        target locales
      - configure option to disable locale coercion at build time
      - configure option to disable C locale warning at build time
      6ea4186d
  17. 21 Nis, 2017 1 kayıt (commit)
  18. 22 Ara, 2016 1 kayıt (commit)
  19. 20 Ara, 2016 1 kayıt (commit)
  20. 01 Eki, 2016 1 kayıt (commit)
  21. 21 Eyl, 2016 1 kayıt (commit)
  22. 14 Eyl, 2016 1 kayıt (commit)
  23. 10 Eyl, 2016 1 kayıt (commit)
    • Łukasz Langa's avatar
      DTrace support: function calls, GC activity, line execution · a785c87d
      Łukasz Langa yazdı
      Tested on macOS 10.11 dtrace, Ubuntu 16.04 SystemTap, and libbcc.
      
      Largely based by an initial patch by Jesús Cea Avión, with some
      influence from Dave Malcolm's SystemTap patch and Nikhil Benesch's
      unification patch.
      
      Things deliberately left out for simplicity:
      - ustack helpers, I have no way of testing them at this point since
      they are Solaris-specific
      - PyFrameObject * in function__entry/function__return, this is
      SystemTap-specific
      - SPARC support
      - dynamic tracing
      - sys module dtrace facility introspection
      
      All of those might be added later.
      a785c87d
  24. 09 Eyl, 2016 2 kayıt (commit)
  25. 08 Eyl, 2016 1 kayıt (commit)
  26. 07 Eyl, 2016 1 kayıt (commit)
  27. 06 Eyl, 2016 4 kayıt (commit)
  28. 05 Eyl, 2016 1 kayıt (commit)
  29. 09 Tem, 2016 1 kayıt (commit)
  30. 07 Tem, 2016 1 kayıt (commit)
  31. 07 Haz, 2016 1 kayıt (commit)
    • Victor Stinner's avatar
      os.urandom() doesn't block on Linux anymore · dddf4849
      Victor Stinner yazdı
      Issue #26839: On Linux, os.urandom() now calls getrandom() with GRND_NONBLOCK
      to fall back on reading /dev/urandom if the urandom entropy pool is not
      initialized yet. Patch written by Colm Buckley.
      dddf4849
  32. 04 May, 2016 1 kayıt (commit)
  33. 25 Nis, 2016 1 kayıt (commit)