# $Id: selftest.py 1778 2004-04-10 10:18:02Z fredrik $ # -*- coding: ascii -*- # tkinter3000 selftest program def sanity(): """ >>> import _tk3draw >>> import _tk3demo >>> import WCK >>> WCK.VERSION '1.1a1' """ if __name__ == "__main__": import doctest, selftest failed, tested = doctest.testmod(selftest) print tested - failed, "tests ok."