summaryrefslogtreecommitdiffstats
path: root/ipapython
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2013-12-10 11:52:31 +0100
committerPetr Viktorin <pviktori@redhat.com>2014-01-10 14:41:39 +0100
commit4284a8349b4db3de2d67be6c201cd2490ad48a20 (patch)
treeecba327c13cf8a3695596fd71d83d76a5759ec49 /ipapython
parentaa66cd5f35bc0d5e857d9bb4d6b294ee582bfd22 (diff)
downloadfreeipa-4284a8349b4db3de2d67be6c201cd2490ad48a20.tar.gz
freeipa-4284a8349b4db3de2d67be6c201cd2490ad48a20.tar.xz
freeipa-4284a8349b4db3de2d67be6c201cd2490ad48a20.zip
Remove legacy LDAPEntry properties data and orig_data.
https://fedorahosted.org/freeipa/ticket/3488
Diffstat (limited to 'ipapython')
-rw-r--r--ipapython/ipaldap.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/ipapython/ipaldap.py b/ipapython/ipaldap.py
index 2440d75fd..de38db5d7 100644
--- a/ipapython/ipaldap.py
+++ b/ipapython/ipaldap.py
@@ -714,7 +714,6 @@ class LDAPEntry(collections.MutableMapping):
def conn(self):
return self._conn
- # properties for Entry and Entity compatibility
@property
def dn(self):
return self._dn
@@ -736,16 +735,6 @@ class LDAPEntry(collections.MutableMapping):
self._single_value_view = SingleValueLDAPEntryView(self)
return self._single_value_view
- @property
- def data(self):
- # FIXME: for backwards compatibility only
- return self
-
- @property
- def orig_data(self):
- # FIXME: for backwards compatibility only
- return self._orig
-
def __repr__(self):
data = dict(self._raw)
data.update((k, v) for k, v in self._nice.iteritems() if v is not None)