mirror of
https://github.com/kennethreitz/clint.git
synced 2026-06-05 23:00:18 +00:00
v0.1.2
This commit is contained in:
@@ -16,3 +16,7 @@ History
|
||||
* Lots of Examples
|
||||
|
||||
|
||||
0.1.2 (2011-03-21)
|
||||
++++++++++++++++++
|
||||
|
||||
* Bugfixes
|
||||
+2
-2
@@ -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'
|
||||
|
||||
@@ -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(),
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user