Skip to content

Commit

Permalink
remove two unused const and preparing 0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
thefab committed Feb 28, 2015
1 parent 975d1ff commit e680a2d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tornadis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@
# This file is part of tornadis library released under the MIT license.
# See the LICENSE file for more information.

version_info = (0, 0, '1')
version_info = (0, 1, 0)
__version__ = ".".join([str(x) for x in version_info])

DEFAULT_HOST = '127.0.0.1'
DEFAULT_PORT = 6379
DEFAULT_CONNECT_TIMEOUT = 20
DEFAULT_WRITE_TIMEOUT = 20
DEFAULT_READ_TIMEOUT = 20
DEFAULT_READ_PAGE_SIZE = 65536
DEFAULT_WRITE_PAGE_SIZE = 65536

Expand Down

0 comments on commit e680a2d

Please sign in to comment.