PATH:
opt
/
alt
/
python35
/
lib64
/
python3.5
/
idlelib
/
idle_test
import unittest from tkinter import Tk, Text from idlelib.EditorWindow import EditorWindow from test.support import requires class Editor_func_test(unittest.TestCase): def test_filename_to_unicode(self): func = EditorWindow._filename_to_unicode class dummy(): filesystemencoding = 'utf-8' pairs = (('abc', 'abc'), ('a\U00011111c', 'a\ufffdc'), (b'abc', 'abc'), (b'a\xf0\x91\x84\x91c', 'a\ufffdc')) for inp, out in pairs: self.assertEqual(func(dummy, inp), out) if __name__ == '__main__': unittest.main(verbosity=2)
[-] htest.py
[edit]
[-] test_editmenu.py
[edit]
[-] test_replacedialog.py
[edit]
[+]
__pycache__
[-] __init__.py
[edit]
[-] test_delegator.py
[edit]
[-] test_io.py
[edit]
[-] test_grep.py
[edit]
[-] test_searchengine.py
[edit]
[-] test_config_help.py
[edit]
[-] mock_idle.py
[edit]
[-] test_parenmatch.py
[edit]
[-] test_calltips.py
[edit]
[-] test_config_name.py
[edit]
[-] test_autoexpand.py
[edit]
[-] test_textview.py
[edit]
[-] test_rstrip.py
[edit]
[-] test_editor.py
[edit]
[-] test_text.py
[edit]
[-] test_autocomplete.py
[edit]
[-] test_configdialog.py
[edit]
[-] test_hyperparser.py
[edit]
[+]
..
[-] README.txt
[edit]
[-] test_widgetredir.py
[edit]
[-] test_idlehistory.py
[edit]
[-] test_undodelegator.py
[edit]
[-] test_warning.py
[edit]
[-] test_help_about.py
[edit]
[-] test_searchdialog.py
[edit]
[-] test_pathbrowser.py
[edit]
[-] test_formatparagraph.py
[edit]
[-] mock_tk.py
[edit]
[-] test_percolator.py
[edit]
[-] test_searchdialogbase.py
[edit]