Changeset 1451
- Timestamp:
- 11/27/05 07:53:35 (3 years ago)
- Files:
-
- django/trunk/docs/modpython.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/modpython.txt
r1437 r1451 108 108 revoke your Django privileges. 109 109 110 If you're the type of programmer who debugs using scattered ``print`` 111 statements, note that ``print`` statements have no effect in mod_python; they 112 don't appear in the Apache log, as one might expect. If you have the need to 113 print debugging information in a mod_python setup, either do this:: 114 115 assert False, the_value_i_want_to_see 116 117 Or add the debugging information to the template of your page. 118 110 119 .. _mod_python documentation: http://modpython.org/live/current/doc-html/directives.html 111 120
