Skip to content

Commit

Permalink
removed obsolete Python compability note from modules docstrings and …
Browse files Browse the repository at this point in the history
…demo scripts
  • Loading branch information
stroeder authored and Petr Viktorin committed Nov 22, 2017
1 parent 99912ea commit 6b15de5
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 45 deletions.
3 changes: 0 additions & 3 deletions Demo/Lib/ldap/async/ldifwriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions Demo/Lib/ldap/async/sizelimit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions Demo/Lib/ldif/ldifcopy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 0 additions & 3 deletions Demo/resiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
written by Michael Stroeder <michael@stroeder.com>
See http://www.python-ldap.org for details.
Python compability note:
Requires Python 2.3+
"""

import ldap,ldap.resiter
Expand Down
3 changes: 0 additions & 3 deletions Lib/ldap/async.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 0 additions & 12 deletions Lib/ldap/ldapobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 0 additions & 4 deletions Lib/ldap/modlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down
3 changes: 0 additions & 3 deletions Lib/ldap/resiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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+
"""


Expand Down
5 changes: 0 additions & 5 deletions Lib/ldapurl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
3 changes: 0 additions & 3 deletions Lib/ldif.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
3 changes: 0 additions & 3 deletions Lib/slapdtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 6b15de5

Please sign in to comment.