summaryrefslogtreecommitdiffstats
path: root/ipalib/parameters.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/parameters.py')
-rw-r--r--ipalib/parameters.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/ipalib/parameters.py b/ipalib/parameters.py
index 76d88347c..8928df16e 100644
--- a/ipalib/parameters.py
+++ b/ipalib/parameters.py
@@ -230,6 +230,7 @@ class Param(ReadOnly):
('create_default', callable, None),
('autofill', bool, False),
('query', bool, False),
+ ('attribute', bool, False),
('flags', frozenset, frozenset()),
# The 'default' kwarg gets appended in Param.__init__():
@@ -791,6 +792,8 @@ class Bytes(Data):
Python v3 ``(str, unicode) => (bytes, str)`` clean-up. See:
http://docs.python.org/3.0/whatsnew/3.0.html
+
+ Also see the `Str` parameter.
"""
type = str
@@ -839,6 +842,8 @@ class Str(Data):
Python v3 ``(str, unicode) => (bytes, str)`` clean-up. See:
http://docs.python.org/3.0/whatsnew/3.0.html
+
+ Also see the `Bytes` parameter.
"""
type = unicode