1. 17 Eyl, 2001 4 kayıt (commit)
    • Andrew M. Kuchling's avatar
      [Patch #462255, from Jason Tishler] Re-enables building the resouce · fda3c3dd
      Andrew M. Kuchling yazdı
          module on the Cygwin platform.
      fda3c3dd
    • Guido van Rossum's avatar
      SF patch #461781 by Chris Lawrence: os.path.realpath - Resolve symlinks: · 83eeef4b
      Guido van Rossum yazdı
         Once upon a time, I put together a little function
         that tries to find the canonical filename for a given
         pathname on POSIX. I've finally gotten around to
         turning it into a proper patch with documentation.
         On non-POSIX, I made it an alias for 'abspath', as
         that's the behavior on POSIX when no symlinks are
         encountered in the path.
      
         Example:
         >>> os.path.realpath('/usr/bin/X11/X')
         '/usr/X11R6/bin/X'
      83eeef4b
    • Guido van Rossum's avatar
      Add cross-compilation defaults to most AC_TRY_RUN values. The · 3065c94f
      Guido van Rossum yazdı
      supplied values are the most "normal" or "common" values found for
      recent 32 bit machines.  This now seems to work to build Python 2.2
      for the ARM processor used on the iPAQ.
      3065c94f
    • Tim Peters's avatar
      PyObject_Dir(): Merge in __members__ and __methods__ too (if they exist, · 305b5857
      Tim Peters yazdı
      and are lists, and then just the string elements (if any)).
      
      There are good and bad reasons for this.  The good reason is to support
      dir() "like before" on objects of extension types that haven't migrated
      to the class introspection API yet.  The bad reason is that Python's own
      method objects are such a type, and this is the quickest way to get their
      im_self etc attrs to "show up" via dir().  It looks much messier to move
      them to the new scheme, as their current getattr implementation presents
      a view of their attrs that's a untion of their own attrs plus their
      im_func's attrs.  In particular, methodobject.__dict__ actually returns
      methodobject.im_func.__dict__, and if that's important to preserve it
      doesn't seem to fit the class introspection model at all.
      305b5857
  2. 16 Eyl, 2001 3 kayıt (commit)
  3. 15 Eyl, 2001 5 kayıt (commit)
  4. 14 Eyl, 2001 20 kayıt (commit)
  5. 13 Eyl, 2001 8 kayıt (commit)