Changeset 4957
- Timestamp:
- 04/08/07 20:05:21 (2 years ago)
- Files:
-
- django/trunk/docs/modpython.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/modpython.txt
r4897 r4957 58 58 .. caution:: 59 59 60 I s you are using Windows, remember that the path will contain backslashes.60 If you're using Windows, remember that the path will contain backslashes. 61 61 This string is passed through Python's string parser twice, so you need to 62 62 escape each backslash **twice**:: … … 64 64 PythonPath "['c:\\\\path\\\\to\\\\project'] + sys.path" 65 65 66 oruse raw strings::66 Or, use raw strings:: 67 67 68 68 PythonPath "[r'c:\\path\\to\\project'] + sys.path" 69 70 69 71 70 You can also add directives such as ``PythonAutoReload Off`` for performance.
