Staging
v0.5.1
https://github.com/python/cpython
Revision 061f132898d3232420db1c00a5adde13647d7e21 authored by Martin v. Löwis on 29 August 2004, 16:40:55 UTC, committed by Martin v. Löwis on 29 August 2004, 16:40:55 UTC
1 parent e064b41
Raw File
Tip revision: 061f132898d3232420db1c00a5adde13647d7e21 authored by Martin v. Löwis on 29 August 2004, 16:40:55 UTC
Patch #973204: Use -rpath instead of -R on Irix and Tru64.
Tip revision: 061f132
test_email.py
# Copyright (C) 2001,2002 Python Software Foundation
# email package unit tests

import unittest
# The specific tests now live in Lib/email/test
from email.test.test_email import suite
from test.test_support import run_suite

def test_main():
    run_suite(suite())

if __name__ == '__main__':
    test_main()
back to top