File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
# -*- 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
3
3
# Glasauergasse 32, A--1130 Wien, Austria. [email protected]
4
4
# #*** <License> ************************************************************#
5
5
# This module is part of the package CNDB.OMP.
35
35
# 4-Sep-2014 (RS) Set `max_value` of `A_IP6_Netmask` to 128
36
36
# 30-Sep-2014 (CT) Fix `_A_IP_Netmask_Interval_` overrides
37
37
# (needs to nested inside `_Attributes`; attribute names)
38
+ # 11-Dec-2015 (CT) Use `attr_types_of_module`, not home-grown code
38
39
# ««revision-date»»···
39
40
#--
40
41
@@ -206,8 +207,9 @@ class _Attributes :
206
207
207
208
# end class A_IP6_Netmask_Interval
208
209
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
210
212
211
213
if __name__ != "__main__" :
212
- CNDB .OMP ._Export ("*" )
214
+ CNDB .OMP ._Export (* __attr_types )
213
215
### __END__ CNDB.OMP.Attr_Type
You can’t perform that action at this time.
0 commit comments