/usr/share/pyshared/reconfigure/items/util.py is in python-reconfigure 0.1.29-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 | yn_getter = lambda x: x == 'yes'
yn_setter = lambda x: 'yes' if x else 'no'
|