summaryrefslogtreecommitdiffstats
path: root/ipalib/parameters.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-01-21 17:19:39 -0700
committerRob Crittenden <rcritten@redhat.com>2009-02-03 15:28:59 -0500
commit4febb4dd1417de8961b2ab092b0c530ca088b72a (patch)
tree419789e208d36b2332e6eb274e61365db19ccb52 /ipalib/parameters.py
parent6e53d03c69581982d341f591bfc3a35ec7f324d9 (diff)
downloadfreeipa-4febb4dd1417de8961b2ab092b0c530ca088b72a.tar.gz
freeipa-4febb4dd1417de8961b2ab092b0c530ca088b72a.tar.xz
freeipa-4febb4dd1417de8961b2ab092b0c530ca088b72a.zip
Started roughing out new crud base classes
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