Changeset 267:6a128096b9cd
- Timestamp:
- 2007-08-25 13:43:43
(1 year ago)
- Author:
- Stefan Schwarzer <sschwarzer@sschwarzer.net>
- branch:
- default
- Message:
Reintroduced modification of `sys.path`; the modification of
`PYTHONPATH` doesn't work because the development directory has to be
added _before_ the other directories.
Use the new module `ifdevel.py` also in `test.py`.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r242 |
r267 |
|
| 7 | 7 | config.py |
|---|
| 8 | 8 | converter.py |
|---|
| | 9 | ifdevel.py |
|---|
| 9 | 10 | pygmentsfinder.py |
|---|
| 10 | 11 | session.py |
|---|
| r266 |
r267 |
|
| 23 | 23 | # SOFTWARE. |
|---|
| 24 | 24 | |
|---|
| | 25 | # has to come first |
|---|
| | 26 | from websourcebrowser import ifdevel |
|---|
| | 27 | |
|---|
| 25 | 28 | from websourcebrowser import browser |
|---|
| 26 | 29 | |
|---|
| r262 |
r267 |
|
| 30 | 30 | import sys |
|---|
| 31 | 31 | |
|---|
| 32 | | # modules that are part of websourcebrowser |
|---|
| | 32 | # has to come before other Websourcebrowser modules |
|---|
| | 33 | from websourcebrowser import ifdevel |
|---|
| | 34 | |
|---|
| | 35 | # modules that are part of Websourcebrowser |
|---|
| 33 | 36 | from websourcebrowser import coding |
|---|
| 34 | 37 | from websourcebrowser import config |
|---|