Package pyffi
[hide private]
[frames] | no frames]

Source Code for Package pyffi

 1  """ 
 2  :mod:`pyffi` --- Interfacing block structured files 
 3  =================================================== 
 4   
 5  .. toctree:: 
 6     :maxdepth: 3 
 7   
 8     pyffi.formats 
 9     pyffi.spells 
10     pyffi.object_models 
11   
12  """ 
13   
14  # ***** BEGIN LICENSE BLOCK ***** 
15  # 
16  # Copyright (c) 2007-2011, Python File Format Interface 
17  # All rights reserved. 
18  # 
19  # Redistribution and use in source and binary forms, with or without 
20  # modification, are permitted provided that the following conditions 
21  # are met: 
22  # 
23  #    * Redistributions of source code must retain the above copyright 
24  #      notice, this list of conditions and the following disclaimer. 
25  # 
26  #    * Redistributions in binary form must reproduce the above 
27  #      copyright notice, this list of conditions and the following 
28  #      disclaimer in the documentation and/or other materials provided 
29  #      with the distribution. 
30  # 
31  #    * Neither the name of the Python File Format Interface 
32  #      project nor the names of its contributors may be used to endorse 
33  #      or promote products derived from this software without specific 
34  #      prior written permission. 
35  # 
36  # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
37  # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
38  # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
39  # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 
40  # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
41  # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
42  # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
43  # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
44  # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
45  # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 
46  # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
47  # POSSIBILITY OF SUCH DAMAGE. 
48  # 
49  # ***** END LICENSE BLOCK ***** 
50   
51  __version__ = '2.1.10' 
52   
53  __hexversion__ = eval('0x%02X%02X%02X' 
54                        % tuple(int(x) for x in __version__.split('.'))) 
55