This commit is contained in:
Kenneth Reitz
2011-03-21 19:06:53 -04:00
parent 1250a857e0
commit d043fd0a56
4 changed files with 7 additions and 12 deletions
+4
View File
@@ -16,3 +16,7 @@ History
* Lots of Examples
0.1.2 (2011-03-21)
++++++++++++++++++
* Bugfixes
+2 -2
View File
@@ -19,8 +19,8 @@ from .pipes import piped_in
__title__ = 'clint'
__version__ = '0.1.1'
__build__ = 0x000101
__version__ = '0.1.2'
__build__ = 0x000102
__author__ = 'Kenneth Reitz'
__license__ = 'ISC'
__copyright__ = 'Copyright 2011 Kenneth Reitz'
+1 -1
View File
@@ -19,7 +19,7 @@ required = []
setup(
name='clint',
version='0.1.1',
version='0.1.2',
description='Python Command-line Application Tools',
long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(),
-9
View File
@@ -17,15 +17,6 @@ class TablibTestCase(unittest.TestCas):
pass
def test_tsplit(self):
from clint.utils import tsplit
s = 'thing1,thing2-thing3/thing4*thing5'
_s = tsplit(s, [',-/*'])
self.
if __name__ == '__main__':
unittest.main()