diff options
| author | ianb <devnull@localhost> | 2007-02-21 00:22:13 +0000 |
|---|---|---|
| committer | ianb <devnull@localhost> | 2007-02-21 00:22:13 +0000 |
| commit | ac3a391505117febeccf52b6097f1bc485b729a4 (patch) | |
| tree | b54920b21afdc372db8d1d74fde02c99f93ed366 /docs | |
| parent | 3317c08db036ffbfe6c6f96530d6e9d8b05c34d6 (diff) | |
| download | paste-ac3a391505117febeccf52b6097f1bc485b729a4.tar.gz | |
Add tracebacks of each thread under Python 2.5 (thanks to Alexander Schremmer for pointing out the technique)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/news.txt | 3 | ||||
| -rw-r--r-- | docs/test_server.ini | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/docs/news.txt b/docs/news.txt index 4c2a641..00274bb 100644 --- a/docs/news.txt +++ b/docs/news.txt @@ -17,6 +17,9 @@ svn trunk * ``HTTPException`` objects now have a ``exc.response(environ)`` method that returns a ``WSGIResponse`` object. +* ``egg:Paste#watch_threads`` will show tracebacks of each thread + under Python 2.5. + 1.2.1 ----- diff --git a/docs/test_server.ini b/docs/test_server.ini index d9ae8b0..3d53aee 100644 --- a/docs/test_server.ini +++ b/docs/test_server.ini @@ -1,8 +1,13 @@ [app:main] -use = egg:Paste#test_slow +use = egg:PasteScript#test [server:main] use = egg:Paste#http +host = 127.0.0.1:8081 + +[server:cherrypy] +use = egg:PasteScript#cherrypy +host = 127.0.0.1:8080 [filter-app:watch_threads] use = egg:Paste#error_catcher @@ -20,3 +25,5 @@ allow_kill = true [app:bad_app] paste.app_factory = paste.debug.watchthreads:make_bad_app + + |
