summaryrefslogtreecommitdiffstats
path: root/ipalib/__init__.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-01-16 10:26:37 -0500
committerPetr Viktorin <pviktori@redhat.com>2014-02-21 11:58:00 +0100
commiteef5acd9d73c81133969521ed9fc7e82d5f180ab (patch)
tree49a72ae985acf73a43d8da630b5156e9ca2a9535 /ipalib/__init__.py
parent9a8f44c09e0e78550b126235240214e7b11af081 (diff)
downloadfreeipa-eef5acd9d73c81133969521ed9fc7e82d5f180ab.tar.gz
freeipa-eef5acd9d73c81133969521ed9fc7e82d5f180ab.tar.xz
freeipa-eef5acd9d73c81133969521ed9fc7e82d5f180ab.zip
Remove the unused ipalib.frontend.Property class
This class was built into the framework from its early days but it's not used anywhere. Remove it along with its tests https://fedorahosted.org/freeipa/ticket/3460 Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipalib/__init__.py')
-rw-r--r--ipalib/__init__.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/ipalib/__init__.py b/ipalib/__init__.py
index ab89ab77e..553c07197 100644
--- a/ipalib/__init__.py
+++ b/ipalib/__init__.py
@@ -883,7 +883,7 @@ import os
import plugable
from backend import Backend
from frontend import Command, LocalOrRemote, Updater, Advice
-from frontend import Object, Method, Property
+from frontend import Object, Method
from crud import Create, Retrieve, Update, Delete, Search
from parameters import DefaultFrom, Bool, Flag, Int, Decimal, Bytes, Str, IA5Str, Password, DNParam, DeprecatedParam
from parameters import BytesEnum, StrEnum, IntEnum, AccessTime, File
@@ -910,14 +910,11 @@ def create_api(mode='dummy'):
- `frontend.Method`
- - `frontend.Property`
-
- `frontend.Advice`
- `backend.Backend`
"""
- api = plugable.API(Command, Object, Method, Property, Backend, Updater,
- Advice)
+ api = plugable.API(Command, Object, Method, Backend, Updater, Advice)
if mode is not None:
api.env.mode = mode
assert mode != 'production'