annotate __init__.py @ 5:f5e3ba8cfcd0

Improved test framework
author Ben Croston <ben@croston.org>
date Wed, 31 Aug 2011 22:45:55 +0100
parents 6a61cfdf6930
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6a61cfdf6930 Initial version
Ben Croston <ben@croston.org>
parents:
diff changeset
1 import platform
6a61cfdf6930 Initial version
Ben Croston <ben@croston.org>
parents:
diff changeset
2 if platform.python_version().startswith('2'):
6a61cfdf6930 Initial version
Ben Croston <ben@croston.org>
parents:
diff changeset
3 from webob_jsonrpc.JsonRpcApp import JsonRpcApp
6a61cfdf6930 Initial version
Ben Croston <ben@croston.org>
parents:
diff changeset
4 from webob_jsonrpc.ServerProxy2 import ServerProxy2 as ServerProxy
6a61cfdf6930 Initial version
Ben Croston <ben@croston.org>
parents:
diff changeset
5 else:
6a61cfdf6930 Initial version
Ben Croston <ben@croston.org>
parents:
diff changeset
6 from webob_jsonrpc.ServerProxy import ServerProxy
6a61cfdf6930 Initial version
Ben Croston <ben@croston.org>
parents:
diff changeset
7