/usr/share/pyshared/pandas/util/misc.py is in python-pandas 0.7.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 | def exclusive(*args):
count = sum([arg is not None for arg in args])
return count == 1
|