Post Made Community Wiki by Community
show/hide this revision's text 2 added 1005 characters in body

Doctest: documentation and unit-testing at the same time.

  • IterTools and yield keyword

    Example extracted fom python documentation:

    def factorial(n):
        """Return the factorial of n, an exact integer >= 0.
    
        If the result is small enough to fit in generatorsan int, return an int.
        Else return a long.
    
        >>> [factorial(n) for n in range(6)]
        [1, 1, 2, 6, 24, 120]
        >>> factorial(-1)
        Traceback (most recent call last):
            ...
        ValueError: n must be >= 0
    
        Factorials of floats are OK, but the float must be an exact integer:
        """
    
        import math
        if not n >= 0:
            raise ValueError("n must be >= 0")
        if math.floor(n) != n:
            raise ValueError("n must be exact integer")
        if n+1 == n:  # catch a value like 1e300
            raise OverflowError("n too large")
        result = 1
        factor = 2
        while factor <= n:
            result *= factor
            factor += 1
        return result
    
    def _test():
        import doctest
        doctest.testmod()    
    
    if __name__ == "__main__":
        _test()
    
  • show/hide this revision's text 1
    1. Doctest: documentation and unit-testing at the same time.
    2. IterTools and yield keyword in generators.