Website: add template and basic stylesheet with menu. Update buildhtml.py (and theref...
[docutils.git] / sandbox / gitpull / web_stylesheet_and_menu / test / test_readers / test_pep / __init__.py
blob46fc50e06c33fe9bdd00a2689ef47c3c229ced1c
1 import os
2 import os.path
3 import sys
5 sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
6 prev = ''
7 while sys.path[0] != prev:
8 try:
9 import DocutilsTestSupport
10 break
11 except ImportError:
12 prev = sys.path[0]
13 sys.path[0] = os.path.dirname(prev)
14 sys.path.pop(0)