1. 09 Eyl, 2007 1 kayıt (commit)
  2. 21 Tem, 2007 1 kayıt (commit)
  3. 05 Haz, 2007 1 kayıt (commit)
  4. 31 Mar, 2007 1 kayıt (commit)
  5. 28 Mar, 2007 1 kayıt (commit)
  6. 14 Şub, 2007 2 kayıt (commit)
  7. 13 Şub, 2007 1 kayıt (commit)
  8. 14 Ock, 2007 1 kayıt (commit)
  9. 19 Ara, 2006 1 kayıt (commit)
  10. 03 Ara, 2006 1 kayıt (commit)
  11. 14 Agu, 2006 1 kayıt (commit)
  12. 02 Agu, 2006 1 kayıt (commit)
  13. 28 Tem, 2006 2 kayıt (commit)
  14. 11 Tem, 2006 1 kayıt (commit)
  15. 10 Tem, 2006 1 kayıt (commit)
  16. 10 Haz, 2006 1 kayıt (commit)
  17. 08 Haz, 2006 1 kayıt (commit)
  18. 06 Haz, 2006 1 kayıt (commit)
  19. 04 Haz, 2006 1 kayıt (commit)
    • Martin Blais's avatar
      Fixes in struct and socket from merge reviews. · af2ae72c
      Martin Blais yazdı
      - Following Guido's comments, renamed
      
        * pack_to -> pack_into
        * recv_buf -> recv_into
        * recvfrom_buf -> recvfrom_into
      
      - Made fixes to _struct.c according to Neal Norwitz comments on the checkins
        list.
      
      - Converted some ints into the appropriate -- I hope -- ssize_t and size_t.
      af2ae72c
  20. 30 May, 2006 1 kayıt (commit)
  21. 29 May, 2006 2 kayıt (commit)
  22. 26 May, 2006 1 kayıt (commit)
    • Martin Blais's avatar
      Support for buffer protocol for socket and struct. · 2856e5f3
      Martin Blais yazdı
      * Added socket.recv_buf() and socket.recvfrom_buf() methods, that use the buffer
        protocol (send and sendto already did).
      
      * Added struct.pack_to(), that is the corresponding buffer compatible method to
        unpack_from().
      
      * Fixed minor typos in arraymodule.
      2856e5f3
  23. 25 Nis, 2006 1 kayıt (commit)
  24. 23 Nis, 2006 1 kayıt (commit)
    • Ronald Oussoren's avatar
      Patch 1471925 - Weak linking support for OSX · d06b6f28
      Ronald Oussoren yazdı
      This patch causes several symbols in the socket and posix module to be weakly
      linked on OSX and disables usage of ftime on OSX. These changes make it possible
      to use a binary build on OSX 10.4 on a 10.3 system.
      d06b6f28
  25. 19 Nis, 2006 1 kayıt (commit)
  26. 15 Nis, 2006 1 kayıt (commit)
  27. 12 Nis, 2006 1 kayıt (commit)
  28. 06 Nis, 2006 1 kayıt (commit)
  29. 01 Nis, 2006 1 kayıt (commit)
  30. 17 Mar, 2006 1 kayıt (commit)
  31. 27 Şub, 2006 1 kayıt (commit)
  32. 21 Şub, 2006 1 kayıt (commit)
  33. 20 Şub, 2006 1 kayıt (commit)
  34. 11 Şub, 2006 1 kayıt (commit)
  35. 07 Şub, 2006 1 kayıt (commit)
    • Neal Norwitz's avatar
      Bug #876637, prevent stack corruption when socket descriptor · 082b2df3
      Neal Norwitz yazdı
      is larger than FD_SETSIZE.
      
      This can only be acheived with ulimit -n SOME_NUMBER_BIGGER_THAN_FD_SETSIZE
      which is typically only available to root.  Since this wouldn't normally
      be run in a test (ie, run as root), it doesn't seem too worthwhile to
      add a normal test.  The bug report has one version of a test.  I've
      written another.  Not sure what the best thing to do is.
      
      Do the check before calling internal_select() because we can't set
      an error in between Py_BEGIN_ALLOW_THREADS and Py_END_ALLOW_THREADS.
      This seemed the clearest solution, ie handle before calling internal_select()
      rather than inside.  Plus there is at least one place outside
      of internal_select() that needed to be handled.
      
      Will backport.
      082b2df3
  36. 19 Ock, 2006 1 kayıt (commit)
  37. 16 Ock, 2006 1 kayıt (commit)