helper code, mostly from Andy Harrington, for PEP 314 completion

This commit is contained in:
Fred Drake 2005-03-20 22:17:02 +00:00
parent b1c96fd83e
commit 54398d6afb
2 changed files with 112 additions and 0 deletions

View file

@ -0,0 +1,9 @@
"""Tests harness for distutils.versionpredicate.
"""
import distutils.versionpredicate
import doctest
def test_suite():
return doctest.DocTestSuite(distutils.versionpredicate)