mirror of
https://github.com/python/cpython.git
synced 2025-07-19 17:25:54 +00:00
9 lines
183 B
Python
9 lines
183 B
Python
"""Tests harness for distutils.versionpredicate.
|
|
|
|
"""
|
|
|
|
import distutils.versionpredicate
|
|
import doctest
|
|
|
|
def test_suite():
|
|
return doctest.DocTestSuite(distutils.versionpredicate)
|