1. 08 Agu, 2006 1 kayıt (commit)
  2. 10 Haz, 2006 1 kayıt (commit)
  3. 09 Haz, 2006 1 kayıt (commit)
  4. 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
  5. 11 Nis, 2006 1 kayıt (commit)
  6. 16 Şub, 2006 4 kayıt (commit)
  7. 15 Şub, 2006 1 kayıt (commit)
  8. 18 Ara, 2005 1 kayıt (commit)
  9. 26 Agu, 2005 1 kayıt (commit)
  10. 24 Eyl, 2004 2 kayıt (commit)
  11. 25 Mar, 2004 1 kayıt (commit)
  12. 11 Mar, 2004 3 kayıt (commit)
  13. 19 Agu, 2002 1 kayıt (commit)
  14. 25 Haz, 2002 1 kayıt (commit)
  15. 14 Haz, 2002 1 kayıt (commit)
    • Guido van Rossum's avatar
      SF patch 568629 by Oren Tirosh: types made callable. · bea18ccd
      Guido van Rossum yazdı
      These built-in functions are replaced by their (now callable) type:
      
          slice()
          buffer()
      
      and these types can also be called (but have no built-in named
      function named after them)
      
          classobj (type name used to be "class")
          code
          function
          instance
          instancemethod (type name used to be "instance method")
      
      The module "new" has been replaced with a small backward compatibility
      placeholder in Python.
      
      A large portion of the patch simply removes the new module from
      various platform-specific build recipes.  The following binary Mac
      project files still have references to it:
      
          Mac/Build/PythonCore.mcp
          Mac/Build/PythonStandSmall.mcp
          Mac/Build/PythonStandalone.mcp
      
      [I've tweaked the code layout and the doc strings here and there, and
      added a comment to types.py about StringTypes vs. basestring.  --Guido]
      bea18ccd
  16. 29 Mar, 2002 1 kayıt (commit)
  17. 19 Eki, 2001 1 kayıt (commit)
  18. 24 Agu, 2001 1 kayıt (commit)
  19. 02 Agu, 2001 1 kayıt (commit)
  20. 01 Eyl, 2000 1 kayıt (commit)
  21. 04 Agu, 2000 1 kayıt (commit)
  22. 09 Tem, 2000 1 kayıt (commit)
  23. 30 Haz, 2000 3 kayıt (commit)
    • Guido van Rossum's avatar
      Change copyright notice - 2nd try. · ffcc3813
      Guido van Rossum yazdı
      ffcc3813
    • Guido van Rossum's avatar
      Change copyright notice. · fd71b9e9
      Guido van Rossum yazdı
      fd71b9e9
    • Fred Drake's avatar
      Trent Mick <trentm@activestate.com>: · a44d353e
      Fred Drake yazdı
      The common technique for printing out a pointer has been to cast to a long
      and use the "%lx" printf modifier. This is incorrect on Win64 where casting
      to a long truncates the pointer. The "%p" formatter should be used instead.
      
      The problem as stated by Tim:
      > Unfortunately, the C committee refused to define what %p conversion "looks
      > like" -- they explicitly allowed it to be implementation-defined. Older
      > versions of Microsoft C even stuck a colon in the middle of the address (in
      > the days of segment+offset addressing)!
      
      The result is that the hex value of a pointer will maybe/maybe not have a 0x
      prepended to it.
      
      
      Notes on the patch:
      
      There are two main classes of changes:
      - in the various repr() functions that print out pointers
      - debugging printf's in the various thread_*.h files (these are why the
      patch is large)
      
      
      Closes SourceForge patch #100505.
      a44d353e
  24. 03 May, 2000 1 kayıt (commit)
    • Guido van Rossum's avatar
      Vladimir Marangozov's long-awaited malloc restructuring. · b18618da
      Guido van Rossum yazdı
      For more comments, read the patches@python.org archives.
      For documentation read the comments in mymalloc.h and objimpl.h.
      
      (This is not exactly what Vladimir posted to the patches list; I've
      made a few changes, and Vladimir sent me a fix in private email for a
      problem that only occurs in debug mode.  I'm also holding back on his
      change to main.c, which seems unnecessary to me.)
      b18618da
  25. 04 Agu, 1999 1 kayıt (commit)
  26. 24 Mar, 1999 1 kayıt (commit)
  27. 19 Mar, 1999 1 kayıt (commit)
  28. 08 Eki, 1998 1 kayıt (commit)
  29. 07 Eki, 1998 2 kayıt (commit)