OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2599
/
usr
/
lib
/
python3
/
dist-packages
/
urwid
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
__init__.py
0 bytes
01/21/2018 08:02:02 PM
rw-r--r--
📁
__pycache__
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
test_canvas.py
15.81 KB
01/21/2018 08:02:02 PM
rw-r--r--
📄
test_container.py
26.69 KB
01/21/2018 08:02:02 PM
rw-r--r--
📄
test_decoration.py
6.7 KB
01/21/2018 08:02:02 PM
rw-r--r--
📄
test_doctests.py
600 bytes
01/21/2018 08:02:02 PM
rw-r--r--
📄
test_event_loops.py
4.91 KB
01/21/2018 08:02:02 PM
rw-r--r--
📄
test_graphics.py
3.83 KB
01/21/2018 08:02:02 PM
rw-r--r--
📄
test_listbox.py
27.27 KB
01/21/2018 08:02:02 PM
rw-r--r--
📄
test_str_util.py
1.23 KB
01/21/2018 08:02:02 PM
rw-r--r--
📄
test_text_layout.py
10.39 KB
01/21/2018 08:02:02 PM
rw-r--r--
📄
test_util.py
6.46 KB
01/21/2018 08:02:02 PM
rw-r--r--
📄
test_widget.py
5.25 KB
01/21/2018 08:02:02 PM
rw-r--r--
📄
util.py
146 bytes
01/21/2018 08:02:02 PM
rw-r--r--
Editing: test_doctests.py
Close
import unittest import doctest import urwid def load_tests(loader, tests, ignore): module_doctests = [ urwid.widget, urwid.wimp, urwid.decoration, urwid.display_common, urwid.main_loop, urwid.monitored_list, urwid.raw_display, 'urwid.split_repr', # override function with same name urwid.util, urwid.signals, urwid.graphics, ] for m in module_doctests: tests.addTests(doctest.DocTestSuite(m, optionflags=doctest.ELLIPSIS | doctest.IGNORE_EXCEPTION_DETAIL)) return tests