@@ -127,7 +127,7 @@ class ObjectClass(SchemaElement):
127
127
This list of strings contains NAMEs or OIDs of object classes
128
128
this object class is derived from
129
129
"""
130
- schema_attribute = 'objectClasses'
130
+ schema_attribute = u 'objectClasses'
131
131
token_defaults = {
132
132
'NAME' :(()),
133
133
'DESC' :(None ,),
@@ -225,7 +225,7 @@ class AttributeType(SchemaElement):
225
225
This list of strings contains NAMEs or OIDs of attribute types
226
226
this attribute type is derived from
227
227
"""
228
- schema_attribute = 'attributeTypes'
228
+ schema_attribute = u 'attributeTypes'
229
229
token_defaults = {
230
230
'NAME' :(()),
231
231
'DESC' :(None ,),
@@ -319,7 +319,7 @@ class LDAPSyntax(SchemaElement):
319
319
Integer flag (0 or 1) indicating whether the attribute type is marked
320
320
as not human-readable (X-NOT-HUMAN-READABLE)
321
321
"""
322
- schema_attribute = 'ldapSyntaxes'
322
+ schema_attribute = u 'ldapSyntaxes'
323
323
token_defaults = {
324
324
'DESC' :(None ,),
325
325
'X-NOT-HUMAN-READABLE' :(None ,),
@@ -367,7 +367,7 @@ class MatchingRule(SchemaElement):
367
367
syntax
368
368
String contains OID of the LDAP syntax this matching rule is usable with
369
369
"""
370
- schema_attribute = 'matchingRules'
370
+ schema_attribute = u 'matchingRules'
371
371
token_defaults = {
372
372
'NAME' :(()),
373
373
'DESC' :(None ,),
@@ -413,7 +413,7 @@ class MatchingRuleUse(SchemaElement):
413
413
This list of strings contains NAMEs or OIDs of attribute types
414
414
for which this matching rule is used
415
415
"""
416
- schema_attribute = 'matchingRuleUse'
416
+ schema_attribute = u 'matchingRuleUse'
417
417
token_defaults = {
418
418
'NAME' :(()),
419
419
'DESC' :(None ,),
@@ -470,7 +470,7 @@ class DITContentRule(SchemaElement):
470
470
This list of strings contains NAMEs or OIDs of attributes which
471
471
may not be present in an entry of the object class
472
472
"""
473
- schema_attribute = 'dITContentRules'
473
+ schema_attribute = u 'dITContentRules'
474
474
token_defaults = {
475
475
'NAME' :(()),
476
476
'DESC' :(None ,),
@@ -527,7 +527,7 @@ class DITStructureRule(SchemaElement):
527
527
List of strings with NAMEs or OIDs of allowed structural object classes
528
528
of superior entries in the DIT
529
529
"""
530
- schema_attribute = 'dITStructureRules'
530
+ schema_attribute = u 'dITStructureRules'
531
531
532
532
token_defaults = {
533
533
'NAME' :(()),
@@ -591,7 +591,7 @@ class NameForm(SchemaElement):
591
591
This list of strings contains NAMEs or OIDs of additional attributes
592
592
an RDN may contain
593
593
"""
594
- schema_attribute = 'nameForms'
594
+ schema_attribute = u 'nameForms'
595
595
token_defaults = {
596
596
'NAME' :(()),
597
597
'DESC' :(None ,),
0 commit comments