cpython: 910b1cb5176c (original) (raw)

Mercurial > cpython

changeset 87834:910b1cb5176c 3.3

Issue #19535: Fixed test_docxmlrpc when python is run with -OO. [#19535]

Serhiy Storchaka storchaka@gmail.com
date Sun, 08 Dec 2013 18:14:49 +0200
parents 3580c718add3
children e71142abf8b6 5ca6e8af0aab
files Lib/test/test_docxmlrpc.py Misc/NEWS
diffstat 2 files changed, 6 insertions(+), 2 deletions(-)[+] [-] Lib/test/test_docxmlrpc.py 6 Misc/NEWS 2

line wrap: on

line diff

--- a/Lib/test/test_docxmlrpc.py +++ b/Lib/test/test_docxmlrpc.py @@ -202,10 +202,12 @@ class DocXMLRPCHTTPGETServer(unittest.Te """ Test that annotations works as expected """ self.client.request("GET", "/") response = self.client.getresponse()

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -97,6 +97,8 @@ Library Tests ----- +- Issue #19535: Fixed test_docxmlrpc when python is run with -OO. +