From eaccdc6554d90d6a29a3674d444710a7c0933f41 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Thu, 27 Oct 2005 14:10:52 +0000 Subject: [PATCH] remove warnings to stdout patch from Nic Ferrier Daniel * python/libxml.py: remove warnings to stdout patch from Nic Ferrier Daniel --- ChangeLog | 4 ++++ python/libxml.py | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2bbf8043..a31f8c21 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Oct 27 16:10:31 CEST 2005 Daniel Veillard + + * python/libxml.py: remove warnings to stdout patch from Nic Ferrier + Thu Oct 27 13:54:52 CEST 2005 Daniel Veillard * valid.c xmlregexp.c include/libxml/valid.h diff --git a/python/libxml.py b/python/libxml.py index 86bdd92d..0c2a19ad 100644 --- a/python/libxml.py +++ b/python/libxml.py @@ -211,7 +211,8 @@ class SAXCallback: pass def warning(self, msg): - print msg + #print msg + pass def error(self, msg): raise parserError(msg)