~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/devscripts/ec2test/instance.py

  • Committer: Michael Hudson
  • Date: 2009-09-10 23:59:12 UTC
  • mto: (9397.1.1 make-me-an-AMI)
  • mto: This revision was merged to the branch mainline in revision 9426.
  • Revision ID: michael.hudson@canonical.com-20090910235912-7j0fdj2bdrqo1kbo
docstrings, __all__s and a little whitespace

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright 2009 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
 
"""Module docstring goes here."""
 
4
"""Code to represent a single machine instance in EC2."""
5
5
 
6
6
__metaclass__ = type
7
 
__all__ = []
 
7
__all__ = [
 
8
    'EC2Instance',
 
9
    ]
8
10
 
9
11
import select
10
12
import socket