diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-08-30 15:03:32 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-08-30 15:03:32 (GMT) |
commit | 613debcf0a0409b49ad4e1ee63dfc73119029755 (patch) | |
tree | 046b39d96b1d2499b153876866cbd3424258be8e /Lib | |
parent | a582af8a5c25705147d7893ca81c1bda000a3ccd (diff) | |
parent | 5cf1c6cb62c39403dbc051d20a272dca0a14ccfb (diff) | |
download | cpython-613debcf0a0409b49ad4e1ee63dfc73119029755.zip cpython-613debcf0a0409b49ad4e1ee63dfc73119029755.tar.gz cpython-613debcf0a0409b49ad4e1ee63dfc73119029755.tar.bz2 |
Merge with 3.5
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_tools/test_i18n.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/test_tools/test_i18n.py b/Lib/test/test_tools/test_i18n.py index 6eaa8dd..ce6f549 100644 --- a/Lib/test/test_tools/test_i18n.py +++ b/Lib/test/test_tools/test_i18n.py @@ -4,9 +4,13 @@ import os import unittest from test.support.script_helper import assert_python_ok -from test.test_tools import toolsdir +from test.test_tools import skip_if_missing, toolsdir from test.support import temp_cwd + +skip_if_missing() + + class Test_pygettext(unittest.TestCase): """Tests for the pygettext.py tool""" |