1. 18 Jun, 2002 18 commits
  2. 17 Jun, 2002 10 commits
  3. 16 Jun, 2002 4 commits
  4. 15 Jun, 2002 3 commits
  5. 14 Jun, 2002 5 commits
    • Guido van Rossum's avatar
      9562bcf3
    • Guido van Rossum's avatar
      SF patch 568629 by Oren Tirosh: types made callable. · bea18ccd
      Guido van Rossum authored
      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
    • Skip Montanaro's avatar
      This introduces stricter library/header file checking for the Berkeley DB · 57454e57
      Skip Montanaro authored
      library.  Since multiple versions can be installed simultaneously, it's
      crucial that you only select libraries and header files which are compatible
      with each other.  Version checking is done from highest version to lowest.
      Building using version 1 of Berkeley DB is disabled by default because of
      the hash file bugs people keep rediscovering.  It can be enabled by
      uncommenting a few lines in setup.py.  Closes patch 553108.
      57454e57
    • Fred Drake's avatar
      Clean up descriptions of PyObject_RichCompare() and PyObject_RichCompareBool() · a0c5e9fb
      Fred Drake authored
      based on comments from David Abrahams.
      Added refcount information for these functions.
      a0c5e9fb
    • Guido van Rossum's avatar
      da07ea72