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