Changeset 1486 for pyamf/trunk/pyamf/remoting/gateway/__init__.py
- Timestamp:
- 07/08/08 19:51:10 (5 months ago)
- Files:
-
- 1 modified
-
pyamf/trunk/pyamf/remoting/gateway/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyamf/trunk/pyamf/remoting/gateway/__init__.py
r1477 r1486 8 8 """ 9 9 10 import platform11 10 import types 12 11 13 12 import pyamf 14 13 from pyamf import remoting, logging, util 15 16 #: Value for the Server response-header that contains17 #: information about the PyAMF and Python version used18 #: by the origin server to handle the request.19 SERVER_NAME = 'PyAMF/%s Python/%s' % (20 '.'.join(map(lambda x: str(x), pyamf.__version__)),21 platform.python_version()22 )23 14 24 15 fault_alias = pyamf.get_class_alias(remoting.ErrorFault)
