summaryrefslogtreecommitdiff
path: root/paste/exceptions
Commit message (Collapse)AuthorAgeFilesLines
* Python 3: dict.items() doesn't return a list anymoreNils Philippsen2015-11-121-2/+2
| | | | | Use sorted() instead, which works on lists as well as dict_items objects.
* Python 3: avoid spurious warningsNils Philippsen2015-09-091-1/+1
| | | | | The dict.has_keys() method doesn't exist anymore in python 3, check if the locals() object has a .keys() method instead.
* Fix hash_identifier() on Python 3Victor Stinner2015-04-221-1/+5
| | | | Fix paste.exceptions.serial_number_generator.hash_identifier()
* Get parse_querystring() function directly from the paste.request module,Victor Stinner2015-04-221-1/+1
| | | | instead of using wsgilib.parse_querystring() alias.
* Port errormiddleware to Python 3Victor Stinner2015-04-211-2/+10
| | | | Encode HTTP body to UTF-8
* Strip trailing spacesVictor Stinner2015-04-214-21/+21
|
* Python 3: Replace ord() with six.byte2int()Cyril Roelandt2014-03-181-1/+1
|
* Python 3: Replace unicode with six.text_type and str with six.binary_typeCyril Roelandt2014-03-181-2/+2
|
* Python 3: Use an explicit floor divisionCyril Roelandt2014-03-181-1/+1
|
* Python 3: replace (int, long) with six.integer_typesCyril Roelandt2014-03-181-1/+3
|
* Python 3: adjust import for email module, new path works with Python 2 and ↵Cyril Roelandt2014-03-181-2/+2
| | | | Python 3
* Python 3: Add __next__() alias to next() methodCyril Roelandt2014-03-181-0/+1
|
* Python 3: use new style of raise, replace "raise class, args" with "raise ↵Cyril Roelandt2014-03-181-1/+1
| | | | class(args)"
* Python 3: Replace "dict.has_key(key)" with "key in dict"Cyril Roelandt2014-03-181-2/+2
|
* Python 3: Replace basestring with six.string_typesCyril Roelandt2014-03-181-1/+2
|
* Python 3: Replace "except Exception, exc" with "except Exception as exc:"Cyril Roelandt2014-03-181-2/+2
|
* Python 3: use new names of standard library modulesCyril Roelandt2014-03-182-8/+2
| | | | Use "try/except ImportError" to try Python 2 and Python 3 names.
* remove spurious printianb2009-06-091-1/+0
|
* typo in docstringianb2009-05-051-1/+1
|
* prefer hashlib over the md5/sha modules which are deprecated in Python 2.6pjenvey2008-09-171-2/+8
|
* fix docstring exampleianb2008-07-301-5/+4
|
* Apply patch for start response from #239, from inducerianb2008-03-261-6/+24
|
* Fix #240, unicode exceptions cause collector to fail. Also make tests ↵ianb2008-03-261-1/+13
| | | | somewhat less fragile
* Fix a couple tests that had some fragilityianb2008-03-251-1/+1
|
* make sslerror import optionalianb2007-10-251-1/+4
|
* doc fixesianb2007-10-231-2/+1
|
* Applied #181, allow smtp authentication for errorsianb2007-10-102-2/+32
|
* Fix #193, when a frame locals is a Context object(?)ianb2007-10-101-2/+8
|
* fix import orderianb2007-08-141-1/+1
|
* inherit show_exceptions_in_wsgi_errors from global_confianb2007-08-141-2/+4
|
* Always (re)call start_response when an exception happensianb2007-04-031-15/+7
|
* Add most doctests to the automatic testing; fix some problems in testsianb2007-02-011-8/+8
|
* convert old-style classes to new-style classespjenvey2007-01-053-4/+4
|
* Added __traceback_decorator__ianb2006-11-271-2/+22
|
* Fixed error message when no message is provided; noted by Alex Rossianb2006-10-211-1/+1
|
* A big commit, primarily aesthetic/whitespace in nature. This is the result ↵ianb2006-10-202-2/+2
| | | | of running pylint over the codebase. Some minor/hard-to-reach typos were also picked up.
* Moved entry point for error_catcher to a separate function; reformatted ↵ianb2006-10-201-33/+43
| | | | docstring to make paster points happier
* Quote the frame name aka function name, which contains <> in Genshiianb2006-10-201-2/+3
|
* Fixed a couple problems with error reports that might go over sizeianb2006-10-132-6/+8
|
* Don't reclose the app_iter if it was closed because of an exceptionianb2006-10-061-1/+2
|
* Fixed problem where the errorcatching middleware doesn't expose the close ↵ianb2006-10-031-24/+67
| | | | method of the app_iter that it is wrapping
* Removed PasteDeploy/Script requirement from testsianb2006-09-211-1/+1
|
* Some objects in Pylons 0.9.2dev error handling are getting to this stage ↵thejimmyg2006-08-301-1/+1
| | | | without being converted to strings for display. Any such objects are now converted here.
* Fixed a bug in the registry test (not code), since str(registered_object) ↵ianb2006-08-232-3/+6
| | | | never fails anymore. Fixed some formatting because of new-style exceptions in Python 2.5
* Fixed problem with exception formatter word wrapping routineianb2006-08-211-9/+24
|
* Removed Paste Deploy dependencies in many placesianb2006-08-191-1/+3
|
* Added copyright header to a bunch of filesianb2006-06-132-0/+4
|
* Small stylesheet updatesianb2006-05-071-2/+2
|
* Improve formatting of the text version, so things don't get crammed together ↵ianb2006-02-221-2/+2
| | | | as much
* Hopefully handle string exceptions (at least handle a little better)ianb2006-02-141-1/+1
|