pkgsrc/textproc/py-libxml2/patches/patch-aa
minskim 706101c861 Update py-libxml2 to 2.6.16.
Changes:
  - improvements: DTD validation APIs provided at the Python level.
2004-11-25 18:37:43 +00:00

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)