Staging
v0.5.1
https://github.com/python/cpython
Revision 7ae7c87b058137537bdc2b7f1d8e585aa0245c1c authored by Victor Stinner on 07 October 2010, 11:06:49 UTC, committed by Victor Stinner on 07 October 2010, 11:06:49 UTC
Use _Py_wchar2char() to support surrogate characters in the input path.
1 parent afa88b5
Raw File
Tip revision: 7ae7c87b058137537bdc2b7f1d8e585aa0245c1c authored by Victor Stinner on 07 October 2010, 11:06:49 UTC
_wrealpath() and _Py_wreadlink() support surrogates (PEP 383)
Tip revision: 7ae7c87
test_lib2to3.py
# Skipping test_parser and test_all_fixers
# because of running
from lib2to3.tests import (test_fixers, test_pytree, test_util, test_refactor,
                           test_main as test_main_)
import unittest
from test.support import run_unittest

def suite():
    tests = unittest.TestSuite()
    loader = unittest.TestLoader()
    for m in (test_fixers, test_pytree,test_util, test_refactor,
              test_main_):
        tests.addTests(loader.loadTestsFromModule(m))
    return tests

def test_main():
    run_unittest(suite())


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