Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Jajcus/pyxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorJacek Konieczny <jajcus@jajcus.net>2003-06-06 12:40:52 +0400
committerJacek Konieczny <jajcus@jajcus.net>2003-06-06 12:40:52 +0400
commit91bb36727648e0da04c7052fee4eacae9ab6ca49 (patch)
treece1c2a5a82a970645a45f6c794561f105c1f7413 /README
parent94d924aed12c054f5f48edecec2285e46051642e (diff)
- no more ugly libxml2 hacks
Diffstat (limited to 'README')
-rw-r--r--README7
1 files changed, 4 insertions, 3 deletions
diff --git a/README b/README
index de1ede2..4c84f10 100644
--- a/README
+++ b/README
@@ -7,9 +7,10 @@ This is PyXMPP - a python XMPP module. It is based on libxml2 - fast and
fully-featured XML parser, so it has features like full namespace support,
XPath queries etc.
-Unfortunately original libxml2 doesn't work well with XML streams, so some
-warkarounds had to be included - thats why this module is not 100% pure
-python. There is also one more problem wiht libxml2 - its python binding are
+Unfortunately original libxml2 doesn't have a python interface which would work
+well with XML streams, so custom extension had to be included - thats why this
+module is not 100% pure python.
+There is also one more problem wiht libxml2 - its python binding are
quite low-level and not well integrated with Python's garbage collector
- so it is easy to get Segmentation Fault when the module is used incorrectly.
However high-level pyxmpp functions and classes should be quite safe.