6 lines
95 B
Python
6 lines
95 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
import doctest
|
||
|
doctest.testmod()
|