Changeset 1672

Show
Ignore:
Timestamp:
09/13/08 23:55:20 (3 months ago)
Author:
thijs
Message:

Doc update

Location:
pyamf/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • pyamf/trunk/CHANGES.txt

    r1668 r1672  
    770.4.0 (unreleased) 
    88------------------ 
     9 - New helper function to make it easier to manually add adapters (Ticket:350) 
    910 - Python C-extension for the pyamf.util.BufferedByteStream class. Contributed 
    1011   by Gerard Escalante (Ticket:225) 
  • pyamf/trunk/THANKS.txt

    r1305 r1672  
    44Antti Kaihola                  akaihol+pyamf@ambitone.com 
    55Jacob Feisley                  jacob.feisley@gmail.com 
     6Gerard Escalante               gerard@saygo.ca 
    67 
    78And everyone who keeps sending feedback, helping us improve PyAMF. 
  • pyamf/trunk/pyamf/adapters/__init__.py

    r1669 r1672  
    6161        statement. E.g. 'foo.bar.baz'. The string must map to a module 
    6262        otherwise the callable will not fire. 
    63     @type mod: L{string} 
     63    @type mod: C{str} 
    6464    @param func: The function to call when C{mod} is imported. This function 
    6565        must take one arg, the newly imported C{module} object. 
    66     @param callable. 
     66    @type func: callable 
    6767    """ 
    6868    if not callable(func):