mirror of https://github.com/flaggo/pydu.git
Merge branch 'master' of https://github.com/Prodesire/pydu
This commit is contained in:
commit
9a5d21eff8
|
@ -136,27 +136,36 @@ Dict
|
||||||
1
|
1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
>>> from pydu.structures import LookupDict
|
|
||||||
>>> d = LookupDict()
|
|
||||||
>>> d['key']
|
|
||||||
None
|
|
||||||
>>> d['key'] = 1
|
|
||||||
>>> d['key']
|
|
||||||
1
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
>>> from pydu.structures import LookupDict
|
|
||||||
>>> d = LookupDict()
|
|
||||||
>>> d['key']
|
|
||||||
None
|
|
||||||
>>> d['key'] = 1
|
|
||||||
>>> d['key']
|
|
||||||
1
|
|
||||||
|
|
||||||
|
|
||||||
Utils
|
Utils
|
||||||
=====
|
=====
|
||||||
|
|
||||||
|
String
|
||||||
|
------
|
||||||
|
|
||||||
|
.. function:: pydu.utils.lstrips(text, remove)
|
||||||
|
|
||||||
|
Removes the string `remove` from the left of `text`.
|
||||||
|
|
||||||
|
>>> lstrips('foobar', 'foo')
|
||||||
|
'bar'
|
||||||
|
>>> lstrips('FOOBARBAZ', ['FOO', 'BAR'])
|
||||||
|
'BAZ'
|
||||||
|
>>> lstrips('FOOBARBAZ', ['BAR', 'FOO'])
|
||||||
|
'BARBAZ'
|
||||||
|
|
||||||
|
|
||||||
|
.. function:: pydu.utils.rstrips(text, remove)
|
||||||
|
|
||||||
|
Removes the string `remove` from the right of `text`.
|
||||||
|
|
||||||
|
>>> rstrips('foobar', 'bar')
|
||||||
|
'foo'
|
||||||
|
|
||||||
|
|
||||||
|
.. function:: pydu.utils.strips(text, remove)
|
||||||
|
|
||||||
|
Removes the string `remove` from the both sides of `text`.
|
||||||
|
|
||||||
|
>>> strips('foobarfoo', 'foo')
|
||||||
|
'bar'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue