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/pyxmpp
diff options
context:
space:
mode:
authorJacek Konieczny <jajcus@jajcus.net>2011-05-03 20:32:37 +0400
committerJacek Konieczny <jajcus@jajcus.net>2011-05-03 20:32:37 +0400
commitcb8dd559dc3bed05a7fef825ce873e0145b2ea5e (patch)
treef4bb35a0461749833069b7c49d5987b2e1adb30b /pyxmpp
parent68bf450473ec32f594d6ddda487c3544294a3f80 (diff)
Do not use '$Id'.
'$Id' doesn't make sense for git
Diffstat (limited to 'pyxmpp')
-rw-r--r--pyxmpp/__init__.py1
-rw-r--r--pyxmpp/all.py1
-rw-r--r--pyxmpp/cache.py1
-rw-r--r--pyxmpp/client.py1
-rw-r--r--pyxmpp/clientstream.py1
-rw-r--r--pyxmpp/error.py1
-rw-r--r--pyxmpp/exceptions.py1
-rw-r--r--pyxmpp/expdict.py1
-rw-r--r--pyxmpp/interface.py1
-rw-r--r--pyxmpp/interface_micro_impl.py1
-rw-r--r--pyxmpp/interfaces.py1
-rw-r--r--pyxmpp/iq.py1
-rw-r--r--pyxmpp/jabber/__init__.py1
-rw-r--r--pyxmpp/jabber/all.py1
-rw-r--r--pyxmpp/jabber/client.py1
-rw-r--r--pyxmpp/jabber/clientstream.py1
-rw-r--r--pyxmpp/jabber/dataforms.py1
-rw-r--r--pyxmpp/jabber/delay.py1
-rw-r--r--pyxmpp/jabber/disco.py1
-rw-r--r--pyxmpp/jabber/muc.py1
-rw-r--r--pyxmpp/jabber/muccore.py1
-rw-r--r--pyxmpp/jabber/register.py1
-rw-r--r--pyxmpp/jabber/simple.py1
-rw-r--r--pyxmpp/jabber/vcard.py1
-rw-r--r--pyxmpp/jabberd/__init__.py1
-rw-r--r--pyxmpp/jabberd/all.py1
-rw-r--r--pyxmpp/jabberd/component.py1
-rw-r--r--pyxmpp/jabberd/componentstream.py1
-rw-r--r--pyxmpp/jid.py1
-rw-r--r--pyxmpp/message.py1
-rw-r--r--pyxmpp/objects.py1
-rw-r--r--pyxmpp/presence.py1
-rw-r--r--pyxmpp/resolver.py1
-rw-r--r--pyxmpp/roster.py1
-rw-r--r--pyxmpp/sasl/__init__.py1
-rw-r--r--pyxmpp/sasl/core.py1
-rw-r--r--pyxmpp/sasl/digest_md5.py1
-rw-r--r--pyxmpp/sasl/external.py1
-rw-r--r--pyxmpp/sasl/gssapi.py1
-rw-r--r--pyxmpp/sasl/plain.py1
-rw-r--r--pyxmpp/stanza.py1
-rw-r--r--pyxmpp/stanzaprocessor.py1
-rw-r--r--pyxmpp/stream.py1
-rw-r--r--pyxmpp/streambase.py1
-rw-r--r--pyxmpp/streamsasl.py1
-rw-r--r--pyxmpp/streamtls.py1
-rw-r--r--pyxmpp/utils.py1
-rw-r--r--pyxmpp/xmlextra.py1
-rw-r--r--pyxmpp/xmppstringprep.py1
49 files changed, 0 insertions, 49 deletions
diff --git a/pyxmpp/__init__.py b/pyxmpp/__init__.py
index 8d8942c..80da4f4 100644
--- a/pyxmpp/__init__.py
+++ b/pyxmpp/__init__.py
@@ -66,7 +66,6 @@ method as_xml() providing their XML representations.
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
# vi: sts=4 et sw=4
diff --git a/pyxmpp/all.py b/pyxmpp/all.py
index cde74e9..00df19a 100644
--- a/pyxmpp/all.py
+++ b/pyxmpp/all.py
@@ -25,7 +25,6 @@ import pyxmpp.all
"""PyXMPP - Jabber/XMPP protocol implementation"""
-__revision__="$Id: __init__.py 477 2004-12-29 13:25:42Z jajcus $"
__docformat__="restructuredtext en"
import pyxmpp
diff --git a/pyxmpp/cache.py b/pyxmpp/cache.py
index 63482f5..c1cc36b 100644
--- a/pyxmpp/cache.py
+++ b/pyxmpp/cache.py
@@ -21,7 +21,6 @@ This package provides facilities to retrieve and transparently cache
cachable objects like Service Discovery responses or e.g. client version
informations."""
-__revision__ = "$Id$"
__docformat__ = "restructuredtext en"
import threading
diff --git a/pyxmpp/client.py b/pyxmpp/client.py
index 6bee46c..158221b 100644
--- a/pyxmpp/client.py
+++ b/pyxmpp/client.py
@@ -21,7 +21,6 @@ Normative reference:
- `RFC 3921 <http://www.ietf.org/rfc/rfc3921.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import threading
diff --git a/pyxmpp/clientstream.py b/pyxmpp/clientstream.py
index 2f605e9..26da1d7 100644
--- a/pyxmpp/clientstream.py
+++ b/pyxmpp/clientstream.py
@@ -22,7 +22,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import logging
diff --git a/pyxmpp/error.py b/pyxmpp/error.py
index c944bce..222fa8f 100644
--- a/pyxmpp/error.py
+++ b/pyxmpp/error.py
@@ -22,7 +22,6 @@ Normative reference:
- `JEP 86 <http://www.jabber.org/jeps/jep-0086.html>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/exceptions.py b/pyxmpp/exceptions.py
index 472c918..610c6bc 100644
--- a/pyxmpp/exceptions.py
+++ b/pyxmpp/exceptions.py
@@ -20,7 +20,6 @@
This module defines all exceptions raised by PyXMPP.
"""
-__revision__="$Id: error.py 647 2006-08-26 18:27:39Z jajcus $"
__docformat__="restructuredtext en"
import logging
diff --git a/pyxmpp/expdict.py b/pyxmpp/expdict.py
index de6643b..656b698 100644
--- a/pyxmpp/expdict.py
+++ b/pyxmpp/expdict.py
@@ -17,7 +17,6 @@
"""Dictionary with item expiration."""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import time
diff --git a/pyxmpp/interface.py b/pyxmpp/interface.py
index 8e262cd..708bf6a 100644
--- a/pyxmpp/interface.py
+++ b/pyxmpp/interface.py
@@ -23,7 +23,6 @@ defined here.
When full ZopeInterfaces API is needed impoer zope.interface instead of this module."""
-__revision__="$Id: utils.py 647 2006-08-26 18:27:39Z jajcus $"
try:
from zope.interface import Interface, Attribute, providedBy, implementedBy, implements
diff --git a/pyxmpp/interface_micro_impl.py b/pyxmpp/interface_micro_impl.py
index fa3bcc5..2ad9188 100644
--- a/pyxmpp/interface_micro_impl.py
+++ b/pyxmpp/interface_micro_impl.py
@@ -21,7 +21,6 @@ This is minimal Zope Interfaces API implementation, as required by PyXMPP, not a
If zope.interface package is available it will be used instead of this one. Never import this module directly."""
-__revision__="$Id: utils.py 647 2006-08-26 18:27:39Z jajcus $"
__docformat__="restructuredtext en"
import sys
diff --git a/pyxmpp/interfaces.py b/pyxmpp/interfaces.py
index 3386e42..1328047 100644
--- a/pyxmpp/interfaces.py
+++ b/pyxmpp/interfaces.py
@@ -17,7 +17,6 @@
"""Interfaces for flexible API extensions."""
-__revision__ = "$Id: error.py 647 2006-08-26 18:27:39Z jajcus $"
__docformat__ = "restructuredtext en"
from pyxmpp.interface import Interface, Attribute
diff --git a/pyxmpp/iq.py b/pyxmpp/iq.py
index 8f9bb48..8a18118 100644
--- a/pyxmpp/iq.py
+++ b/pyxmpp/iq.py
@@ -21,7 +21,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/jabber/__init__.py b/pyxmpp/jabber/__init__.py
index bec8ec6..a334c6d 100644
--- a/pyxmpp/jabber/__init__.py
+++ b/pyxmpp/jabber/__init__.py
@@ -17,7 +17,6 @@
"""JSF defined XMPP extension and legacy Jabber protocol elements"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
# vi: sts=4 et sw=4
diff --git a/pyxmpp/jabber/all.py b/pyxmpp/jabber/all.py
index e896357..86ff015 100644
--- a/pyxmpp/jabber/all.py
+++ b/pyxmpp/jabber/all.py
@@ -24,7 +24,6 @@ import pyxmpp.jabber.all
(imports all important names into pyxmpp.jabber namespace)"""
-__revision__="$Id: __init__.py 477 2004-12-29 13:25:42Z jajcus $"
__docformat__="restructuredtext en"
import pyxmpp
diff --git a/pyxmpp/jabber/client.py b/pyxmpp/jabber/client.py
index d9c7aab..ef8d705 100644
--- a/pyxmpp/jabber/client.py
+++ b/pyxmpp/jabber/client.py
@@ -23,7 +23,6 @@ Normative reference:
- `JEP 30 <http://www.jabber.org/jeps/jep-0030.html>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import logging
diff --git a/pyxmpp/jabber/clientstream.py b/pyxmpp/jabber/clientstream.py
index ad2f205..705b026 100644
--- a/pyxmpp/jabber/clientstream.py
+++ b/pyxmpp/jabber/clientstream.py
@@ -20,7 +20,6 @@ Normative reference:
- `JEP 78 <http://www.jabber.org/jeps/jep-0078.html>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import hashlib
diff --git a/pyxmpp/jabber/dataforms.py b/pyxmpp/jabber/dataforms.py
index 51dd287..f36004e 100644
--- a/pyxmpp/jabber/dataforms.py
+++ b/pyxmpp/jabber/dataforms.py
@@ -20,7 +20,6 @@ Normative reference:
- `JEP 4 <http://www.jabber.org/jeps/jep-0004.html>`__
"""
-__revision__="$Id: disco.py 513 2005-01-09 16:34:00Z jajcus $"
__docformat__="restructuredtext en"
import copy
diff --git a/pyxmpp/jabber/delay.py b/pyxmpp/jabber/delay.py
index 076f222..a3f8136 100644
--- a/pyxmpp/jabber/delay.py
+++ b/pyxmpp/jabber/delay.py
@@ -21,7 +21,6 @@ Normative reference:
- `JEP 91 <http://www.jabber.org/jeps/jep-0091.html>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/jabber/disco.py b/pyxmpp/jabber/disco.py
index 5f66f28..92af355 100644
--- a/pyxmpp/jabber/disco.py
+++ b/pyxmpp/jabber/disco.py
@@ -21,7 +21,6 @@ Normative reference:
- `JEP 30 <http://www.jabber.org/jeps/jep-0030.html>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import warnings
diff --git a/pyxmpp/jabber/muc.py b/pyxmpp/jabber/muc.py
index 79e2e86..8c33564 100644
--- a/pyxmpp/jabber/muc.py
+++ b/pyxmpp/jabber/muc.py
@@ -20,7 +20,6 @@ Normative reference:
- `JEP 45 <http://www.jabber.org/jeps/jep-0045.html>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import logging
diff --git a/pyxmpp/jabber/muccore.py b/pyxmpp/jabber/muccore.py
index 3389d0c..8e6f354 100644
--- a/pyxmpp/jabber/muccore.py
+++ b/pyxmpp/jabber/muccore.py
@@ -20,7 +20,6 @@ Normative reference:
- `JEP 45 <http://www.jabber.org/jeps/jep-0045.html>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/jabber/register.py b/pyxmpp/jabber/register.py
index e09b2c2..46e64a2 100644
--- a/pyxmpp/jabber/register.py
+++ b/pyxmpp/jabber/register.py
@@ -21,7 +21,6 @@ Normative reference:
- `JEP 77 <http://www.jabber.org/jeps/jep-0077.html>`__
"""
-__revision__="$Id: delay.py 567 2005-03-29 20:08:55Z jajcus $"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/jabber/simple.py b/pyxmpp/jabber/simple.py
index c53976f..b104507 100644
--- a/pyxmpp/jabber/simple.py
+++ b/pyxmpp/jabber/simple.py
@@ -18,7 +18,6 @@
"""Simple API for simple things like sendig messages or single stanzas."""
-__revision__="$Id: client.py 528 2005-01-20 21:14:53Z jajcus $"
__docformat__="restructuredtext en"
def xmpp_do(jid,password,function,server=None,port=None):
diff --git a/pyxmpp/jabber/vcard.py b/pyxmpp/jabber/vcard.py
index bd9db0e..82d7e55 100644
--- a/pyxmpp/jabber/vcard.py
+++ b/pyxmpp/jabber/vcard.py
@@ -24,7 +24,6 @@ Normative reference:
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import base64
diff --git a/pyxmpp/jabberd/__init__.py b/pyxmpp/jabberd/__init__.py
index d6375f0..e45c323 100644
--- a/pyxmpp/jabberd/__init__.py
+++ b/pyxmpp/jabberd/__init__.py
@@ -18,7 +18,6 @@
"""Facilities for jabber server implementation specific features,
like components."""
-__revision__="$Id$"
__docformat__="restructuredtext en"
# vi: sts=4 et sw=4
diff --git a/pyxmpp/jabberd/all.py b/pyxmpp/jabberd/all.py
index 29b5993..2c9d064 100644
--- a/pyxmpp/jabberd/all.py
+++ b/pyxmpp/jabberd/all.py
@@ -23,7 +23,6 @@ import pyxmpp.jabberd.all
(imports all important names into pyxmpp.jabberd namespace)"""
-__revision__="$Id: __init__.py 477 2004-12-29 13:25:42Z jajcus $"
__docformat__="restructuredtext en"
import pyxmpp.jabberd
diff --git a/pyxmpp/jabberd/component.py b/pyxmpp/jabberd/component.py
index 34c48b3..a25a3c4 100644
--- a/pyxmpp/jabberd/component.py
+++ b/pyxmpp/jabberd/component.py
@@ -21,7 +21,6 @@ Normative reference:
- `JEP 114 <http://www.jabber.org/jeps/jep-0114.html>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import threading
diff --git a/pyxmpp/jabberd/componentstream.py b/pyxmpp/jabberd/componentstream.py
index e11dc9c..fc0fed5 100644
--- a/pyxmpp/jabberd/componentstream.py
+++ b/pyxmpp/jabberd/componentstream.py
@@ -21,7 +21,6 @@ Normative reference:
- `JEP 114 <http://www.jabber.org/jeps/jep-0114.html>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import hashlib
diff --git a/pyxmpp/jid.py b/pyxmpp/jid.py
index 0f1c674..cd4383c 100644
--- a/pyxmpp/jid.py
+++ b/pyxmpp/jid.py
@@ -22,7 +22,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import re
diff --git a/pyxmpp/message.py b/pyxmpp/message.py
index 6560920..7b7d435 100644
--- a/pyxmpp/message.py
+++ b/pyxmpp/message.py
@@ -21,7 +21,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/objects.py b/pyxmpp/objects.py
index 62bd0e4..ec7d541 100644
--- a/pyxmpp/objects.py
+++ b/pyxmpp/objects.py
@@ -18,7 +18,6 @@
"""General base classes for PyXMPP objects."""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/presence.py b/pyxmpp/presence.py
index a3f74b6..f4c470f 100644
--- a/pyxmpp/presence.py
+++ b/pyxmpp/presence.py
@@ -21,7 +21,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/resolver.py b/pyxmpp/resolver.py
index 3b19413..a4aa1c7 100644
--- a/pyxmpp/resolver.py
+++ b/pyxmpp/resolver.py
@@ -22,7 +22,6 @@ Normative reference:
- `RFC 2782 <http://www.ietf.org/rfc/rfc2782.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import re
diff --git a/pyxmpp/roster.py b/pyxmpp/roster.py
index e5efc4a..7bda907 100644
--- a/pyxmpp/roster.py
+++ b/pyxmpp/roster.py
@@ -21,7 +21,6 @@ Normative reference:
- `RFC 3921 <http://www.ietf.org/rfc/rfc3921.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/sasl/__init__.py b/pyxmpp/sasl/__init__.py
index cb0d949..f89e89a 100644
--- a/pyxmpp/sasl/__init__.py
+++ b/pyxmpp/sasl/__init__.py
@@ -20,7 +20,6 @@ Normative reference:
- `RFC 2222 <http://www.ietf.org/rfc/rfc2222.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import random
diff --git a/pyxmpp/sasl/core.py b/pyxmpp/sasl/core.py
index 05fe5fb..1fbb63a 100644
--- a/pyxmpp/sasl/core.py
+++ b/pyxmpp/sasl/core.py
@@ -19,7 +19,6 @@
Normative reference:
- `RFC 2222 <http://www.ietf.org/rfc/rfc2222.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import random
diff --git a/pyxmpp/sasl/digest_md5.py b/pyxmpp/sasl/digest_md5.py
index f585cf6..23de678 100644
--- a/pyxmpp/sasl/digest_md5.py
+++ b/pyxmpp/sasl/digest_md5.py
@@ -20,7 +20,6 @@ Normative reference:
- `RFC 2831 <http://www.ietf.org/rfc/rfc2831.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
from binascii import b2a_hex
diff --git a/pyxmpp/sasl/external.py b/pyxmpp/sasl/external.py
index af0f34f..3f67486 100644
--- a/pyxmpp/sasl/external.py
+++ b/pyxmpp/sasl/external.py
@@ -21,7 +21,6 @@ Normative reference:
- `XEP-0178 <http://xmpp.org/extensions/xep-0178.html#c2s>__`
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import base64
diff --git a/pyxmpp/sasl/gssapi.py b/pyxmpp/sasl/gssapi.py
index 913b162..d3086e9 100644
--- a/pyxmpp/sasl/gssapi.py
+++ b/pyxmpp/sasl/gssapi.py
@@ -20,7 +20,6 @@ Normative reference:
- `RFC 4752 <http://www.ietf.org/rfc/rfc4752.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import base64
diff --git a/pyxmpp/sasl/plain.py b/pyxmpp/sasl/plain.py
index c6508c3..14696f9 100644
--- a/pyxmpp/sasl/plain.py
+++ b/pyxmpp/sasl/plain.py
@@ -20,7 +20,6 @@ Normative reference:
- `RFC 2595 <http://www.ietf.org/rfc/rfc2595.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import logging
diff --git a/pyxmpp/stanza.py b/pyxmpp/stanza.py
index bc0d3ac..a9b41ef 100644
--- a/pyxmpp/stanza.py
+++ b/pyxmpp/stanza.py
@@ -21,7 +21,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/stanzaprocessor.py b/pyxmpp/stanzaprocessor.py
index a2c9fd0..4192307 100644
--- a/pyxmpp/stanzaprocessor.py
+++ b/pyxmpp/stanzaprocessor.py
@@ -21,7 +21,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/stream.py b/pyxmpp/stream.py
index d97ced1..8c16918 100644
--- a/pyxmpp/stream.py
+++ b/pyxmpp/stream.py
@@ -21,7 +21,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import logging
diff --git a/pyxmpp/streambase.py b/pyxmpp/streambase.py
index 3878b49..203b66c 100644
--- a/pyxmpp/streambase.py
+++ b/pyxmpp/streambase.py
@@ -22,7 +22,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import libxml2
diff --git a/pyxmpp/streamsasl.py b/pyxmpp/streamsasl.py
index 58403f1..abc8868 100644
--- a/pyxmpp/streamsasl.py
+++ b/pyxmpp/streamsasl.py
@@ -22,7 +22,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import base64
diff --git a/pyxmpp/streamtls.py b/pyxmpp/streamtls.py
index 2838259..17be764 100644
--- a/pyxmpp/streamtls.py
+++ b/pyxmpp/streamtls.py
@@ -22,7 +22,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import socket
diff --git a/pyxmpp/utils.py b/pyxmpp/utils.py
index 1a521da..b889ed5 100644
--- a/pyxmpp/utils.py
+++ b/pyxmpp/utils.py
@@ -17,7 +17,6 @@
"""Utility functions for the pyxmpp package."""
-__revision__="$Id$"
__docformat__="restructuredtext en"
import sys
diff --git a/pyxmpp/xmlextra.py b/pyxmpp/xmlextra.py
index 7efd109..6285215 100644
--- a/pyxmpp/xmlextra.py
+++ b/pyxmpp/xmlextra.py
@@ -18,7 +18,6 @@
"""Extension to libxml2 for XMPP stream and stanza processing"""
-__revision__="$Id: xmlextra.py,v 1.15 2004/10/11 18:33:51 jajcus Exp $"
__docformat__="restructuredtext en"
import sys
diff --git a/pyxmpp/xmppstringprep.py b/pyxmpp/xmppstringprep.py
index 99cda9c..6e2f5e5 100644
--- a/pyxmpp/xmppstringprep.py
+++ b/pyxmpp/xmppstringprep.py
@@ -23,7 +23,6 @@ Normative reference:
- `RFC 3920 <http://www.ietf.org/rfc/rfc3920.txt>`__
"""
-__revision__="$Id: xmppstringprep.py,v 1.16 2004/10/07 22:28:04 jajcus Exp $"
__docformat__="restructuredtext en"
import stringprep