1. 18 Dec, 1997 5 commits
  2. 17 Dec, 1997 5 commits
  3. 16 Dec, 1997 1 commit
  4. 15 Dec, 1997 4 commits
  5. 12 Dec, 1997 17 commits
  6. 11 Dec, 1997 3 commits
    • Jim Fulton's avatar
      Added __basicnew__ class protocol. · ca9e3f18
      Jim Fulton authored
      Added support for user-defined method attributes.  User-defined method
      attributes can only be set or accessed for bound methods.
      User-defined method attributes are stored in instances under a name
      formed by concatinating the method and attribute names.  Default
      values for user-defined method attributes may be set in the class
      statement. For example, to define the default '__roles__' attribute of
      a method, 'f'::
      
         class C:
            def f(self): print 'f called'
            f__roles__=('manage',)
      
      User-defined attributes may not be set in restricted execution mode.
      User-defined attribute names may only be accessed in
      restricted-execution mode if their names begin with double
      underscores.
      
      Added default __cmp__ support for extension subclasses.  I only
      recently noticed that extension subclasses overcome Python's
      willingness to only compare objects of the same type, because they
      smell to Python like numeric types.
      ca9e3f18
    • Jim Fulton's avatar
      Added EXTENSIONCLASS_BASICNEW_FLAG. · 7224d742
      Jim Fulton authored
      7224d742
    • Jeffrey Shell's avatar
      fixed base64/URL problems · 88d4b3d3
      Jeffrey Shell authored
      88d4b3d3
  7. 10 Dec, 1997 3 commits
  8. 08 Dec, 1997 1 commit
  9. 07 Dec, 1997 1 commit