Terry J. Reedy added the comment:

If Python itself works correctly on a machine, it is a bug for a test to say 
that is it not, by failing.  Should we change
-        response = self.request('/', method='get')
to
+        response = self.request('/', method='gets')
or
+        response = self.request('/', method='custom')

or conditionally, on type(status), change the test from assertEqual to (after 
substitutions) assertIn(response.status, (200,501))? David, do you have a 
preference?  or should I flip a coin?

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue20155>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to