A replacement for `internalerror` that presents a nice page with lots of debug information for the programmer. (Based on the beautiful 500 page from [Django](http://djangoproject.com/), designed by [Wilson Miner](http://wilsonminer.com/).)
()
| 319 | |
| 320 | |
| 321 | def debugerror(): |
| 322 | """ |
| 323 | A replacement for `internalerror` that presents a nice page with lots |
| 324 | of debug information for the programmer. |
| 325 | |
| 326 | (Based on the beautiful 500 page from [Django](http://djangoproject.com/), |
| 327 | designed by [Wilson Miner](http://wilsonminer.com/).) |
| 328 | """ |
| 329 | return web._InternalError(djangoerror()) |
| 330 | |
| 331 | |
| 332 | def emailerrors(to_address, olderror, from_address=None): |
no test coverage detected