/usr/share/pyshared/zope/location/configure.txt is in python-zope.location 3.9.1-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 | Package configuration
=====================
The ``zope.location`` package provides a ZCML file that configures some
location-related adapters. As we don't have ``zope.copy`` available in our
test environment, three adapters get registered:
>>> from zope.configuration.xmlconfig import XMLConfig
>>> import zope.location
>>> XMLConfig('configure.zcml', zope.location)()
>>> len(list(zope.component.getGlobalSiteManager().registeredAdapters()))
3
|