1. 17 Sep, 2001 2 commits
    • Guido van Rossum's avatar
      Add cross-compilation defaults to most AC_TRY_RUN values. The · 3065c94f
      Guido van Rossum authored
      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 authored
      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 Sep, 2001 3 commits
  3. 15 Sep, 2001 5 commits
  4. 14 Sep, 2001 20 commits
  5. 13 Sep, 2001 10 commits