File: __init__.py

package info (click to toggle)
python-statistics 3.4.0b3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 148 kB
  • ctags: 54
  • sloc: python: 639; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- coding: UTF-8 -*-
import statistics
import unittest

def suite():

    import doctest
    suite = unittest.TestSuite()
    suite.addTests(doctest.DocTestSuite(statistics))
    return suite

if __name__ == '__main__':
    unittest.TextTestRunner(verbosity=2).run(suite())