Package qm :: Package external
[hide private]
[frames] | no frames]

Source Code for Package qm.external

 1  ######################################################################## 
 2  # 
 3  # File:   __init__.py 
 4  # Author: Nathaniel Smith 
 5  # Date:   2003-04-09 
 6  # 
 7  # Contents: 
 8  #   Empty file to make external packages importable. 
 9  # 
10  # Copyright (c) 2001, 2002 by CodeSourcery, LLC.  All rights reserved.  
11  # 
12  # For license terms see the file COPYING. 
13  # 
14  ######################################################################## 
15   
16  # DocumentTemplate uses regex and regsub, which are obsolete.  Prevent 
17  # Python from warning about these modules. 
18  import warnings 
19  warnings.filterwarnings("ignore", 
20                          r".*(regex|regsub).*", 
21                          DeprecationWarning, 
22                          r".*(DocumentTemplate|regsub).*") 
23   
24  ######################################################################## 
25  # Local Variables: 
26  # mode: python 
27  # indent-tabs-mode: nil 
28  # fill-column: 72 
29  # End: 
30