|
From: <wa...@us...> - 2008-05-24 01:55:25
|
Revision: 1468
http://pywebsvcs.svn.sourceforge.net/pywebsvcs/?rev=1468&view=rev
Author: warnes
Date: 2008-05-23 18:55:33 -0700 (Fri, 23 May 2008)
Log Message:
-----------
Re-fix position of import for nested scopes
Modified Paths:
--------------
trunk/SOAPpy/SOAPpy/Client.py
trunk/SOAPpy/SOAPpy/GSIServer.py
trunk/SOAPpy/SOAPpy/NS.py
trunk/SOAPpy/SOAPpy/Server.py
trunk/SOAPpy/SOAPpy/Types.py
Modified: trunk/SOAPpy/SOAPpy/Client.py
===================================================================
--- trunk/SOAPpy/SOAPpy/Client.py 2008-05-16 23:32:51 UTC (rev 1467)
+++ trunk/SOAPpy/SOAPpy/Client.py 2008-05-24 01:55:33 UTC (rev 1468)
@@ -1,3 +1,5 @@
+from __future__ import nested_scopes
+
"""
################################################################################
#
@@ -40,8 +42,6 @@
################################################################################
"""
-from __future__ import nested_scopes
-
ident = '$Id$'
from version import __version__
Modified: trunk/SOAPpy/SOAPpy/GSIServer.py
===================================================================
--- trunk/SOAPpy/SOAPpy/GSIServer.py 2008-05-16 23:32:51 UTC (rev 1467)
+++ trunk/SOAPpy/SOAPpy/GSIServer.py 2008-05-24 01:55:33 UTC (rev 1468)
@@ -1,3 +1,5 @@
+from __future__ import nested_scopes
+
"""
GSIServer - Contributed by Ivan R. Judson <ju...@mc...>
@@ -43,8 +45,6 @@
################################################################################
"""
-from __future__ import nested_scopes
-
ident = '$Id$'
from version import __version__
Modified: trunk/SOAPpy/SOAPpy/NS.py
===================================================================
--- trunk/SOAPpy/SOAPpy/NS.py 2008-05-16 23:32:51 UTC (rev 1467)
+++ trunk/SOAPpy/SOAPpy/NS.py 2008-05-24 01:55:33 UTC (rev 1468)
@@ -1,3 +1,5 @@
+from __future__ import nested_scopes
+
"""
################################################################################
#
@@ -40,8 +42,6 @@
################################################################################
"""
-from __future__ import nested_scopes
-
ident = '$Id$'
from version import __version__
Modified: trunk/SOAPpy/SOAPpy/Server.py
===================================================================
--- trunk/SOAPpy/SOAPpy/Server.py 2008-05-16 23:32:51 UTC (rev 1467)
+++ trunk/SOAPpy/SOAPpy/Server.py 2008-05-24 01:55:33 UTC (rev 1468)
@@ -1,3 +1,5 @@
+from __future__ import nested_scopes
+
"""
################################################################################
#
@@ -40,8 +42,6 @@
################################################################################
"""
-from __future__ import nested_scopes
-
ident = '$Id$'
from version import __version__
Modified: trunk/SOAPpy/SOAPpy/Types.py
===================================================================
--- trunk/SOAPpy/SOAPpy/Types.py 2008-05-16 23:32:51 UTC (rev 1467)
+++ trunk/SOAPpy/SOAPpy/Types.py 2008-05-24 01:55:33 UTC (rev 1468)
@@ -1,3 +1,5 @@
+from __future__ import nested_scopes
+
"""
################################################################################
# Copyright (c) 2003, Pfizer
@@ -36,8 +38,6 @@
ident = '$Id$'
from version import __version__
-from __future__ import nested_scopes
-
import UserList
import base64
import cgi
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|