/usr/lib/python3/dist-packages/skytools/testing.py is in python3-skytools 3.3-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """Utilities for tests.
"""
from __future__ import division, absolute_import, print_function
from collections import OrderedDict
def ordered_dict(d):
"""Return OrderedDict with sorted keys.
>>> OrderedDict(dict(a=1,b=2,c=3))
x
"""
return OrderedDict(sorted(d.items()))
|