File: usercustomize.py

package info (click to toggle)
zope.i18nmessageid 7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 332 kB
  • sloc: python: 444; ansic: 344; makefile: 133
file content (11 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
# Work around difficulties with pre-PEP-420 namespace packages: the .pth
# files from build-dependencies are loaded during site initialization,
# adding the system "zope" package directory to sys.path, but we want to
# ensure that subpackages of zope can be imported both from our
# build-dependencies and from this package while running tests.

import os.path

import zope

zope.__path__[:0] = [os.path.join(os.path.dirname(__file__), "zope")]