File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Copyright The IETF Trust 2010-2020, All Rights Reserved
22# coding: latin-1
33
4-
5- from types import ModuleType
6-
7- # These people will be sent a stack trace if there's an uncaught exception in
8- # code any of the modules imported above:
9- DEBUG_EMAILS = [
10- ('Tero Kivinen' , 'kivinen@iki.fi' ),
11- ]
12-
13- for k in list (locals ().keys ()):
14- m = locals ()[k ]
15- if isinstance (m , ModuleType ):
16- if hasattr (m , "DEBUG_EMAILS" ):
17- DEBUG_EMAILS += list (getattr (m , "DEBUG_EMAILS" ))
18- setattr (m , "DEBUG_EMAILS" , DEBUG_EMAILS )
19-
20-
Original file line number Diff line number Diff line change 11# Copyright The IETF Trust 2007-2020, All Rights Reserved
22# -*- coding: utf-8 -*-
33
4-
5- from types import ModuleType
6-
7- # These people will be sent a stack trace if there's an uncaught exception in
8- # code any of the modules imported above:
9- DEBUG_EMAILS = [
10- ('Ole Laursen' , 'olau@iola.dk' ),
11- ]
12-
13- for k in list (locals ().keys ()):
14- m = locals ()[k ]
15- if isinstance (m , ModuleType ):
16- if hasattr (m , "DEBUG_EMAILS" ):
17- DEBUG_EMAILS += list (getattr (m , "DEBUG_EMAILS" ))
18- setattr (m , "DEBUG_EMAILS" , DEBUG_EMAILS )
19-
20-
Original file line number Diff line number Diff line change 22# -*- coding: utf-8 -*-
33
44
5- from types import ModuleType
6-
7- # These people will be sent a stack trace if there's an uncaught exception in
8- # code any of the modules imported above:
9- DEBUG_EMAILS = [
10- ('Emilio A. Sánchez' , 'esanchez@yaco.es' ),
11- ]
12-
13- for k in list (locals ().keys ()):
14- m = locals ()[k ]
15- if isinstance (m , ModuleType ):
16- if hasattr (m , "DEBUG_EMAILS" ):
17- DEBUG_EMAILS += list (getattr (m , "DEBUG_EMAILS" ))
18- setattr (m , "DEBUG_EMAILS" , DEBUG_EMAILS )
19-
You can’t perform that action at this time.
0 commit comments