1. 31 Ara, 2002 1 kayıt (commit)
    • Neal Norwitz's avatar
      Fix SF #639945, 64-bit bug on AIX · 7b8e35ed
      Neal Norwitz yazdı
      I can't test this on the snake farm (no aix box is working).
      This change works for the submitter seems correct.
      Can anybody test this on 32- and 64- bit AIX?
      7b8e35ed
  2. 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
  3. 28 Kas, 2001 1 kayıt (commit)
  4. 04 Eyl, 2000 1 kayıt (commit)
  5. 01 Eyl, 2000 1 kayıt (commit)
  6. 22 Tem, 2000 2 kayıt (commit)
  7. 16 Tem, 2000 1 kayıt (commit)
    • Thomas Wouters's avatar
      Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either · 7e474022
      Thomas Wouters yazdı
      comments, docstrings or error messages. I fixed two minor things in
      test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't").
      
      There is a minor style issue involved: Guido seems to have preferred English
      grammar (behaviour, honour) in a couple places. This patch changes that to
      American, which is the more prominent style in the source. I prefer English
      myself, so if English is preferred, I'd be happy to supply a patch myself ;)
      7e474022
  8. 30 Haz, 2000 2 kayıt (commit)
  9. 22 Ara, 1999 1 kayıt (commit)
    • Guido van Rossum's avatar
      Cleanup patches from Greg Stein: · 96a8fb7e
      Guido van Rossum yazdı
      * in import.c, #ifdef out references to dynamic loading based on
        HAVE_DYNAMIC_LOADING
      
      * clean out the platform-specific crud from importdl.c.
        [ maybe fold this function into import.c and drop the importdl.c file? Greg.]
      
      * change GetDynLoadFunc's "funcname" parameter to "shortname". change
        "name" to "fqname" for clarification.
      
      * each GetDynLoadFunc now creates its own funcname value.
      
        WARNING: as I mentioned previously, we may run into an issue with a
        missing "_" on some platforms. Testing will show this pretty quickly,
        however.
      
      * move pathname munging into dynload_shlib.c
      96a8fb7e
  10. 21 Ara, 1999 1 kayıt (commit)
    • Guido van Rossum's avatar
      Vladimir Marangozov: · 96b5ee88
      Guido van Rossum yazdı
      Here's a patch that avoids a warning caused by the "const char* pathname"
      declaration for _PyImport_GetDynLoadFunc (in dynload_aix). The "aix_load"
      function's 1st arg is prototyped as "char *pathname".
      96b5ee88
  11. 20 Ara, 1999 1 kayıt (commit)