diff --git a/Demo/Lib/ldap/async/ldifwriter.py b/Demo/Lib/ldap/async/ldifwriter.py index 8cc4aa5..9671762 100644 --- a/Demo/Lib/ldap/async/ldifwriter.py +++ b/Demo/Lib/ldap/async/ldifwriter.py @@ -7,9 +7,6 @@ This example translates the naming context of data read from input, sanitizes some attributes, maps/removes object classes, maps/removes attributes., etc. It's far from being complete though. - -Python compability note: -Tested on Python 2.0+, should run on Python 1.5.x. """ import sys,ldap,ldap.async diff --git a/Demo/Lib/ldap/async/sizelimit.py b/Demo/Lib/ldap/async/sizelimit.py index 05e439b..11ed7b6 100644 --- a/Demo/Lib/ldap/async/sizelimit.py +++ b/Demo/Lib/ldap/async/sizelimit.py @@ -8,9 +8,6 @@ This example translates the naming context of data read from input, sanitizes some attributes, maps/removes object classes, maps/removes attributes., etc. It's far from being complete though. - -Python compability note: -Tested on Python 2.0+, should run on Python 1.5.x. """ import sys,ldap,ldap.async diff --git a/Demo/Lib/ldif/ldifcopy.py b/Demo/Lib/ldif/ldifcopy.py index 498b857..62cb391 100644 --- a/Demo/Lib/ldif/ldifcopy.py +++ b/Demo/Lib/ldif/ldifcopy.py @@ -7,9 +7,6 @@ This example translates the naming context of data read from input, sanitizes some attributes, maps/removes object classes, maps/removes attributes., etc. It's far from being complete though. - -Python compability note: -Tested on Python 2.0+, should run on Python 1.5.x. """ import sys,ldif diff --git a/Demo/resiter.py b/Demo/resiter.py index 3394524..ff9fe5a 100644 --- a/Demo/resiter.py +++ b/Demo/resiter.py @@ -3,9 +3,6 @@ written by Michael Stroeder See http://www.python-ldap.org for details. - -Python compability note: -Requires Python 2.3+ """ import ldap,ldap.resiter diff --git a/Lib/ldap/async.py b/Lib/ldap/async.py index 7f3d7c3..0dd4940 100644 --- a/Lib/ldap/async.py +++ b/Lib/ldap/async.py @@ -2,9 +2,6 @@ ldap.async - handle async LDAP operations See https://www.python-ldap.org/ for details. - -Python compability note: -Tested on Python 2.0+ but should run on Python 1.5.x. """ import ldap diff --git a/Lib/ldap/ldapobject.py b/Lib/ldap/ldapobject.py index 33ce36a..f4e61da 100644 --- a/Lib/ldap/ldapobject.py +++ b/Lib/ldap/ldapobject.py @@ -2,18 +2,6 @@ ldapobject.py - wraps class _ldap.LDAPObject See https://www.python-ldap.org/ for details. - -Compability: -- Tested with Python 2.0+ but should work with Python 1.5.x -- LDAPObject class should be exactly the same like _ldap.LDAPObject - -Usage: -Directly imported by ldap/__init__.py. The symbols of _ldap are -overridden. - -Thread-lock: -Basically calls into the LDAP lib are serialized by the module-wide -lock self._ldap_object_lock. """ from os import strerror diff --git a/Lib/ldap/modlist.py b/Lib/ldap/modlist.py index 1c9c1dc..99e4a18 100644 --- a/Lib/ldap/modlist.py +++ b/Lib/ldap/modlist.py @@ -2,10 +2,6 @@ ldap.modlist - create add/modify modlist's See https://www.python-ldap.org/ for details. - -Python compability note: -This module is known to work with Python 2.0+ but should work -with Python 1.5.2 as well. """ from ldap import __version__ diff --git a/Lib/ldap/resiter.py b/Lib/ldap/resiter.py index d8c1368..bb72618 100644 --- a/Lib/ldap/resiter.py +++ b/Lib/ldap/resiter.py @@ -2,9 +2,6 @@ ldap.resiter - processing LDAP results with iterators See https://www.python-ldap.org/ for details. - -Python compability note: -Requires Python 2.3+ """ diff --git a/Lib/ldapurl.py b/Lib/ldapurl.py index 1fa9b1c..bbd6929 100644 --- a/Lib/ldapurl.py +++ b/Lib/ldapurl.py @@ -2,11 +2,6 @@ ldapurl - handling of LDAP URLs as described in RFC 4516 See https://www.python-ldap.org/ for details. - -Python compability note: -This module only works with Python 2.0+ since -1. string methods are used instead of module string and -2. list comprehensions are used. """ __version__ = '2.5.2' diff --git a/Lib/ldif.py b/Lib/ldif.py index f68838e..86b8ac9 100644 --- a/Lib/ldif.py +++ b/Lib/ldif.py @@ -2,9 +2,6 @@ ldif - generate and parse LDIF data (see RFC 2849) See https://www.python-ldap.org/ for details. - -Python compability note: -Tested with Python 2.0+, but should work with Python 1.5.2+. """ __version__ = '2.5.2' diff --git a/Lib/slapdtest.py b/Lib/slapdtest.py index 3586643..2f98672 100644 --- a/Lib/slapdtest.py +++ b/Lib/slapdtest.py @@ -3,9 +3,6 @@ slapdtest - module for spawning test instances of OpenLDAP's slapd server See https://www.python-ldap.org/ for details. - -Python compability note: -This module only works with Python 2.7.x since """ __version__ = '2.5.2'