Skip to content

Commit 032eff6

Browse files
committed
Use attr_types_of_module, not home-grown code
+ Define `__sphinx__members`
1 parent 42bf12c commit 032eff6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

_CNDB/_OMP/Attr_Type.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (C) 2012-2014 Mag. Christian Tanzer All rights reserved
2+
# Copyright (C) 2012-2015 Mag. Christian Tanzer All rights reserved
33
# Glasauergasse 32, A--1130 Wien, Austria. [email protected]
44
# #*** <License> ************************************************************#
55
# This module is part of the package CNDB.OMP.
@@ -35,6 +35,7 @@
3535
# 4-Sep-2014 (RS) Set `max_value` of `A_IP6_Netmask` to 128
3636
# 30-Sep-2014 (CT) Fix `_A_IP_Netmask_Interval_` overrides
3737
# (needs to nested inside `_Attributes`; attribute names)
38+
# 11-Dec-2015 (CT) Use `attr_types_of_module`, not home-grown code
3839
# ««revision-date»»···
3940
#--
4041

@@ -206,8 +207,9 @@ class _Attributes :
206207

207208
# end class A_IP6_Netmask_Interval
208209

209-
__all__ = tuple (k for (k, v) in pyk.iteritems (globals ()) if is_attr_type (v))
210+
__attr_types = Attr.attr_types_of_module ()
211+
__all__ = __sphinx__members = __attr_types
210212

211213
if __name__ != "__main__" :
212-
CNDB.OMP._Export ("*")
214+
CNDB.OMP._Export (* __attr_types)
213215
### __END__ CNDB.OMP.Attr_Type

0 commit comments

Comments
 (0)