/usr/share/pyshared/psychopy/bits.py is in psychopy 1.73.06.dfsg-1.
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 | # Part of the PsychoPy library
# Copyright (C) 2012 Jonathan Peirce
# Distributed under the terms of the GNU General Public License (GPL).
import logging
#deprecated warning present since 1.60.00
logging.error("""
DEPRECATED: In future versions of PsychoPy you will need to call:
from psychopy.hardware.crs import bits
rather than:
from psychopy import bits""")
from psychopy.hardware.crs.bits import *
|