2013-09-26 17:14:40 +02:00

14 lines
442 B
Plaintext

$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)