Changeset 1672
- Timestamp:
- 09/13/08 23:55:20 (3 months ago)
- Location:
- pyamf/trunk
- Files:
-
- 3 modified
-
CHANGES.txt (modified) (1 diff)
-
THANKS.txt (modified) (1 diff)
-
pyamf/adapters/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyamf/trunk/CHANGES.txt
r1668 r1672 7 7 0.4.0 (unreleased) 8 8 ------------------ 9 - New helper function to make it easier to manually add adapters (Ticket:350) 9 10 - Python C-extension for the pyamf.util.BufferedByteStream class. Contributed 10 11 by Gerard Escalante (Ticket:225) -
pyamf/trunk/THANKS.txt
r1305 r1672 4 4 Antti Kaihola akaihol+pyamf@ambitone.com 5 5 Jacob Feisley jacob.feisley@gmail.com 6 Gerard Escalante gerard@saygo.ca 6 7 7 8 And everyone who keeps sending feedback, helping us improve PyAMF. -
pyamf/trunk/pyamf/adapters/__init__.py
r1669 r1672 61 61 statement. E.g. 'foo.bar.baz'. The string must map to a module 62 62 otherwise the callable will not fire. 63 @type mod: L{string}63 @type mod: C{str} 64 64 @param func: The function to call when C{mod} is imported. This function 65 65 must take one arg, the newly imported C{module} object. 66 @ param callable.66 @type func: callable 67 67 """ 68 68 if not callable(func):
