Tres Seaver
2014-02-17 76ff93079eac35d529a2a316248b8cca750ef5e4
EC:  break the page and see the DBT traceback display.
1 files modified
19 ■■■■■ changed files
docs/quick_tutorial/debugtoolbar.rst 19 ●●●●● patch | view | raw | blame | history
docs/quick_tutorial/debugtoolbar.rst
@@ -92,3 +92,22 @@
# Why don't we add ``pyramid_debugtoolbar`` to the list of
  ``install_requires`` dependencies in ``debugtoolbar/setup.py``?
# Introduce a bug into your application:  Change:
  .. code-block:: python
    def hello_world(request):
        return Response('<body><h1>Hello World!</h1></body>')
  to:
  .. code-block:: python
    def hello_world(request):
        return xResponse('<body><h1>Hello World!</h1></body>')
  Save, and visit http://localhost:6543/ again.  Notice the nice
  traceback display.  On the lowest line, click the "screen" icon to the
  right, and try typing the variable names ``request`` and ``Response``.
  What else can you discover?