allpy
view allpy/util.py @ 863:ddf85d0a8924
'make tests' now also searches for doctests and runs them.
- Added --with-doctest flag to nosetests.
- Fixed usecase examples so they don't break from nose searching for doctests
- Fixed test_usecase, so it works with the current usecases
| author | Daniil Alexeyevsky <dendik@kodomo.fbb.msu.ru> |
|---|---|
| date | Thu, 21 Jul 2011 18:34:27 +0400 |
| parents | 4fa7b10ce252 |
| children | 7b2a37ff1662 |
line source
1 """Miscellanous utilities.
2 """
7 """The oppozite of zip() builtin."""
15 """Open file. Return stdin/stdout for filename '-'."""
26 """Remove each of substrings from string."""
32 """Clone of dict that user may add attributes to."""
33 pass
36 """Clone of list that user may add attributes to."""
37 pass
40 """Clone of str that user may add attributes to."""
41 pass
44 """Warn about function being deprecated."""
48 """Lazy module import to help breaking bad import loops."""
58 )
62 # vim: set et ts=4 sts=4 sw=4:
