Changeset 581

Show
Ignore:
Timestamp:
07/21/08 00:15:23 (2 months ago)
Author:
athomas
Message:

Export builder.cull_candidates() through __all__.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cly/trunk/cly/builder.py

    r579 r581  
    3333    'String', 'URI', 'LDAPDN', 'Integer', 'Float', 'IP', 'Hostname', 'Host', 
    3434    'EMail', 'File', 'Boolean', 'KeyValue', 'AbsoluteTime', 'RelativeTime', 
    35     'Timezone', 
     35    'Timezone', 'cull_candidates', 
    3636    ] 
    3737__docformat__ = 'restructuredtext en' 
     
    17191719    """ 
    17201720    return [c + sep for c in candidates if c and c.startswith(text)] 
    1721  
    1722