[Subversion] / PyProtocols / CHANGES.txt  

Diff of /PyProtocols/CHANGES.txt

Parent Directory | Revision Log

version 108, Sun Mar 7 22:13:41 2004 UTC version 126, Sat Jun 19 21:48:15 2004 UTC
Line 1 
Line 1 
 Fixes and changes since PyProtocols 0.9.2  Fixes and changes since PyProtocols 0.9.2
   
    - The 'factory' parameter to 'adapt()' was REMOVED.  An informal survey of
      PyProtocols' users indicated that nobody was using it to any significant
      degree, and its removal was unopposed.  This feature was an extension to
      PEP 246, so this brings PyProtocols into closer conformance with the PEP.
   
    - Raise 'AdaptationFailure' instead of 'NotImplementedError' when adaptation
      is unsuccessful.  'AdaptationFailure' is a subclass of both 'TypeError' and
      'NotImplementedError', so code written according to either PEP 246 or older
      versions of PyProtocols will still catch the error.
   
    - There is now an 'AbstractBase' class, similar to 'Interface', that can be
      used for the "ABC" (Abstract Base Class) style of interface usage, where the
      interface may contain implementation code, and can be subclassed to create
      concrete implementations.  In previous versions, you could use 'Interface'
      as such a base class, but now calling an 'Interface' object performs
      adaptation, rather than instantiation.
   
    - 'Protocol' instances (except for 'AbstractBase' subclasses) are now callable
      with a signature similar to 'adapt()'.  E.g. 'ISomething(foo,*args)' is
      equivalent to 'adapt(foo,ISomething,*args)'.  This convenient API, pioneered
      by Twisted and later adopted by Zope X3, is now available in PyProtocols as
      well.  (Note that as a result of this change, the PyProtocols test suite now
      requires a Zope X3 alpha release or better.)
   
  - 'setup.py' now accepts a '--without-speedups' global option to disable   - 'setup.py' now accepts a '--without-speedups' global option to disable
    the C speedups module.     the C speedups module.
   


Generate output suitable for use with a patch program
Legend:
Removed from v.108  
changed lines
  Added in v.126

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help