Home | Trees | Indices | Help |
---|
|
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
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Dec 23 12:30:46 2011 | http://epydoc.sourceforge.net |