Browse Source

fixed module docstring location (all imports must be below them)

main
German Larrain 11 years ago
parent
commit
35935462c2
5 changed files with 11 additions and 10 deletions
  1. +3
    -2
      src/SOAPpy/Client.py
  2. +2
    -2
      src/SOAPpy/GSIServer.py
  3. +2
    -2
      src/SOAPpy/NS.py
  4. +2
    -2
      src/SOAPpy/Server.py
  5. +2
    -2
      src/SOAPpy/Types.py

+ 3
- 2
src/SOAPpy/Client.py View File

@@ -1,5 +1,3 @@
from __future__ import nested_scopes

"""
################################################################################
#
@@ -40,7 +38,10 @@ from __future__ import nested_scopes
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
################################################################################

"""
from __future__ import nested_scopes

ident = '$Id: Client.py 1496 2010-03-04 23:46:17Z pooryorick $'

from version import __version__


+ 2
- 2
src/SOAPpy/GSIServer.py View File

@@ -1,5 +1,3 @@
from __future__ import nested_scopes

"""
GSIServer - Contributed by Ivan R. Judson <judson@mcs.anl.gov>

@@ -43,7 +41,9 @@ GSIServer - Contributed by Ivan R. Judson <judson@mcs.anl.gov>
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
################################################################################

"""
from __future__ import nested_scopes

ident = '$Id: GSIServer.py 1468 2008-05-24 01:55:33Z warnes $'
from version import __version__


+ 2
- 2
src/SOAPpy/NS.py View File

@@ -1,5 +1,3 @@
from __future__ import nested_scopes

"""
################################################################################
#
@@ -40,7 +38,9 @@ from __future__ import nested_scopes
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
################################################################################

"""
from __future__ import nested_scopes

ident = '$Id: NS.py 1468 2008-05-24 01:55:33Z warnes $'
from version import __version__


+ 2
- 2
src/SOAPpy/Server.py View File

@@ -1,5 +1,3 @@
from __future__ import nested_scopes

"""
################################################################################
#
@@ -40,7 +38,9 @@ from __future__ import nested_scopes
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
################################################################################

"""
from __future__ import nested_scopes

ident = '$Id: Server.py 1468 2008-05-24 01:55:33Z warnes $'
from version import __version__


+ 2
- 2
src/SOAPpy/Types.py View File

@@ -1,5 +1,3 @@
from __future__ import nested_scopes

"""
################################################################################
# Copyright (c) 2003, Pfizer
@@ -33,7 +31,9 @@ from __future__ import nested_scopes
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
################################################################################

"""
from __future__ import nested_scopes

ident = '$Id: Types.py 1496 2010-03-04 23:46:17Z pooryorick $'
from version import __version__


Loading…
Cancel
Save