python Programming Glossary: doctest.testmod
Python hashable dicts http://stackoverflow.com/questions/1151658/python-hashable-dicts right return result if __name__ __main__ import doctest doctest.testmod python share improve this question Here is the easy way..
Why results of map() and list comprehension are different? http://stackoverflow.com/questions/139819/why-results-of-map-and-list-comprehension-are-different in args print alist if __name__ '__main__' import doctest doctest.testmod In other words t 1 1 args for i in t ... args.append lambda..
How to implement Unicode string matching by folding in python http://stackoverflow.com/questions/1410308/how-to-implement-unicode-string-matching-by-folding-in-python if category c 'Mn' if __name__ '__main__' import doctest doctest.testmod And for the actual matching if that interests anyone I construct..
Grouping / clustering numbers in Python http://stackoverflow.com/questions/14783947/grouping-clustering-numbers-in-python
sparse assignment list in python http://stackoverflow.com/questions/1857780/sparse-assignment-list-in-python i in l print i None None hello None 22 ''' import doctest doctest.testmod verbose 1 I imagine you'll want more to support negative indices..
Python: using doctests for classes http://stackoverflow.com/questions/2708178/python-using-doctests-for-classes file class Test snip if __name__ __main__ import doctest doctest.testmod As for where to put the tests If it's testing the class as a..
Can this Python postfix notation (reverse polish notation) interpreter be made more efficient and accurate? http://stackoverflow.com/questions/3865939/can-this-python-postfix-notation-reverse-polish-notation-interpreter-be-made-m continue return stack.pop if __name__ '__main__' doctest.testmod python rpn postfix notation share improve this question ..
urlencode a multidimensional dictionary in python http://stackoverflow.com/questions/4013838/urlencode-a-multidimensional-dictionary-in-python ' '.join recursion d if __name__ __main__ import doctest doctest.testmod Still I'd be interested to know if there's a better way to do..
|