~ubuntu-branches/ubuntu/trusty/python-happybase/trusty

« back to all changes in this revision

Viewing changes to happybase/__init__.py

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2013-05-30 13:56:42 UTC
  • mto: (4.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20130530135642-1nop5f85m07169hk
Tags: upstream-0.6
ImportĀ upstreamĀ versionĀ 0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
from ._version import __version__
7
7
 
8
 
from .api import *
 
8
from .connection import DEFAULT_HOST, DEFAULT_PORT, Connection
 
9
from .table import Table
 
10
from .batch import Batch
 
11
from .pool import ConnectionPool, NoConnectionsAvailable
 
12
 
 
13
# TODO: properly handle errors defined in Thrift specification