1. 14 Şub, 2008 1 kayıt (commit)
  2. 02 Nis, 2007 2 kayıt (commit)
  3. 21 Ock, 2007 1 kayıt (commit)
  4. 29 Ara, 2006 1 kayıt (commit)
    • Thomas Wouters's avatar
      Backport trunk checkin r51565: · 04e82044
      Thomas Wouters yazdı
      Fix SF bug #1545837: array.array borks on deepcopy. array.__deepcopy__()
      needs to take an argument, even if it doesn't actually use it.
      04e82044
  5. 12 Agu, 2006 2 kayıt (commit)
    • Neal Norwitz's avatar
      Patch #1538606, Patch to fix __index__() clipping. · 8a87f5d3
      Neal Norwitz yazdı
      I modified this patch some by fixing style, some error checking, and adding
      XXX comments.  This patch requires review and some changes are to be expected.
      I'm checking in now to get the greatest possible review and establish a
      baseline for moving forward.  I don't want this to hold up release if possible.
      8a87f5d3
    • Neal Norwitz's avatar
      Klocwork made another run and found a bunch more problems. · 6f5ff3f3
      Neal Norwitz yazdı
      This is the first batch of fixes that should be easy to verify based on context.
      
      This fixes problem numbers: 220 (ast), 323-324 (symtable),
      321-322 (structseq), 215 (array), 210 (hotshot), 182 (codecs), 209 (etree).
      6f5ff3f3
  6. 10 Haz, 2006 1 kayıt (commit)
  7. 08 Haz, 2006 1 kayıt (commit)
    • Brett Cannon's avatar
      Buffer objects would return the read or write buffer for a wrapped object when · de3b0522
      Brett Cannon yazdı
      the char buffer was requested.  Now it actually returns the char buffer if
      available or raises a TypeError if it isn't (as is raised for the other buffer
      types if they are not present but requested).
      
      Not a backport candidate since it does change semantics of the buffer object
      (although it could be argued this is enough of a bug to bother backporting).
      de3b0522
  8. 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
  9. 18 Nis, 2006 1 kayıt (commit)
  10. 15 Nis, 2006 1 kayıt (commit)
    • Thomas Wouters's avatar
      Use Py_VISIT in all tp_traverse methods, instead of traversing manually or · c6e55068
      Thomas Wouters yazdı
      using a custom, nearly-identical macro. This probably changes how some of
      these functions are compiled, which may result in fractionally slower (or
      faster) execution. Considering the nature of traversal, visiting much of the
      address space in unpredictable patterns, I'd argue the code readability and
      maintainability is well worth it ;P
      c6e55068
  11. 03 Nis, 2006 1 kayıt (commit)
  12. 07 Mar, 2006 2 kayıt (commit)
  13. 27 Şub, 2006 1 kayıt (commit)
  14. 17 Şub, 2006 1 kayıt (commit)
  15. 16 Şub, 2006 2 kayıt (commit)
  16. 15 Şub, 2006 1 kayıt (commit)
  17. 19 Ock, 2006 1 kayıt (commit)
  18. 26 Agu, 2005 1 kayıt (commit)
  19. 16 Ara, 2004 1 kayıt (commit)
  20. 29 Agu, 2004 1 kayıt (commit)
  21. 31 May, 2004 1 kayıt (commit)
  22. 14 Mar, 2004 2 kayıt (commit)
  23. 13 Mar, 2004 1 kayıt (commit)
  24. 12 Eki, 2003 1 kayıt (commit)
  25. 05 Agu, 2003 1 kayıt (commit)
  26. 23 May, 2003 1 kayıt (commit)
  27. 18 May, 2003 1 kayıt (commit)
  28. 24 Nis, 2003 1 kayıt (commit)
  29. 23 Nis, 2003 1 kayıt (commit)
    • Raymond Hettinger's avatar
      SF Patch 685051: fix for 680789: reprs in arraymodule · 88ba1e39
      Raymond Hettinger yazdı
      (contributed by logistix; substantially reworked by rhettinger).
      
      To create a representation of non-string arrays, array_repr() was
      starting with a base Python string object and repeatedly using +=
      to concatenate the representation of individual objects.
      
      Logistix had the idea to convert to an intermediate tuple form and
      then join it all at once.  I took advantage of existing tools and
      formed a list with array_tolist() and got its representation through
      PyObject_Repr(v) which already has a fast implementation for lists.
      88ba1e39
  30. 17 Mar, 2003 2 kayıt (commit)
  31. 24 Şub, 2003 1 kayıt (commit)
  32. 10 Şub, 2003 1 kayıt (commit)
  33. 07 Ock, 2003 1 kayıt (commit)
  34. 06 Ock, 2003 1 kayıt (commit)
    • Jason Tishler's avatar
      Patch #661760: Cygwin auto-import module patch · fb8595df
      Jason Tishler yazdı
      The attached patch enables shared extension
      modules to build cleanly under Cygwin without
      moving the static initialization of certain function
      pointers (i.e., ones exported from the Python
      DLL core) to a module initialization function.
      
      Additionally, this patch fixes the modules that
      have been changed in the past to accommodate
      Cygwin.
      fb8595df