Home | History | Annotate | Download | only in paste

Lines Matching refs:Not

35     "File Not Found" message at the URL ``/error404.html`` and then use
45 if not isinstance(code, int):
47 '%s is not valid'%repr(code))
94 body = ('Error: %s. (Error page could not be fetched)'
119 URL to forward to or ``None`` if the code is not to be intercepted.
130 Here is an example where a ``404 File Not Found`` status response would be
131 redirected to the URL ``/error?code=404&message=File%20Not%20Found``. This
189 if not (new_url == None or isinstance(new_url, str)):
193 'to be a string or None, not %r' % new_url)
318 if not (new_url == None or isinstance(new_url, str)):
322 'to be a string or None, not %s'%repr(new_url)
364 "to in order to create an error document did not "