706101c861
Changes: - improvements: DTD validation APIs provided at the Python level.
13 lines
442 B
Text
13 lines
442 B
Text
$NetBSD: patch-aa,v 1.2 2004/11/25 18:37:43 minskim Exp $
|
|
|
|
--- libxml.py.orig 2004-09-28 05:59:58.000000000 -0500
|
|
+++ libxml.py
|
|
@@ -281,7 +281,7 @@ class xmlCore:
|
|
# defined as python2 properties
|
|
#
|
|
import sys
|
|
- if float(sys.version[0:3]) < 2.2:
|
|
+ if float(sys.version[0:3].replace('p', '.')) < 2.2:
|
|
def __getattr__(self, attr):
|
|
if attr == "parent":
|
|
ret = libxml2mod.parent(self._o)
|