Package CedarBackup2 :: Module image
[hide private]
[frames] | no frames]

Source Code for Module CedarBackup2.image

 1  # -*- coding: iso-8859-1 -*- 
 2  # vim: set ft=python ts=3 sw=3 expandtab: 
 3  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 4  # 
 5  #              C E D A R 
 6  #          S O L U T I O N S       "Software done right." 
 7  #           S O F T W A R E 
 8  # 
 9  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
10  # 
11  # Author   : Kenneth J. Pronovici <pronovic@ieee.org> 
12  # Language : Python (>= 2.5) 
13  # Project  : Cedar Backup, release 2 
14  # Purpose  : Provides interface backwards compatibility. 
15  # 
16  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
17   
18  ######################################################################## 
19  # Module documentation 
20  ######################################################################## 
21   
22  """ 
23  Provides interface backwards compatibility. 
24   
25  In Cedar Backup 2.10.0, a refactoring effort took place while adding code to 
26  support DVD hardware.  All of the writer functionality was moved to the 
27  writers/ package.  This mostly-empty file remains to preserve the Cedar Backup 
28  library interface. 
29   
30  @author: Kenneth J. Pronovici <pronovic@ieee.org> 
31  """ 
32   
33  ######################################################################## 
34  # Imported modules 
35  ######################################################################## 
36   
37  from CedarBackup2.writers.util import IsoImage  # pylint: disable=W0611 
38