remove warnings to stdout patch from Nic Ferrier Daniel

* python/libxml.py: remove warnings to stdout patch from Nic Ferrier
Daniel
diff --git a/ChangeLog b/ChangeLog
index 2bbf804..a31f8c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Oct 27 16:10:31 CEST 2005 Daniel Veillard <daniel@veillard.com>
+
+	* python/libxml.py: remove warnings to stdout patch from Nic Ferrier
+
 Thu Oct 27 13:54:52 CEST 2005 Daniel Veillard <daniel@veillard.com>
 
 	* valid.c xmlregexp.c include/libxml/valid.h
diff --git a/python/libxml.py b/python/libxml.py
index 86bdd92..0c2a19a 100644
--- a/python/libxml.py
+++ b/python/libxml.py
@@ -211,7 +211,8 @@
         pass
 
     def warning(self, msg):
-        print msg
+        #print msg
+	pass
 
     def error(self, msg):
         raise parserError(msg)