Package rdkit :: Package Chem :: Module FastSDMolSupplier
[hide private]
[frames] | no frames]

Source Code for Module rdkit.Chem.FastSDMolSupplier

 1  # $Id$ 
 2  # 
 3  #  Copyright (C) 2007 Greg Landrum 
 4  #   @@ All Rights Reserved @@ 
 5  #  This file is part of the RDKit. 
 6  #  The contents are covered by the terms of the BSD license 
 7  #  which is included in the file license.txt, found at the root 
 8  #  of the RDKit source tree. 
 9  # 
10  import sys 
11  from rdkit import Chem 
12   
13  import warnings 
14  warnings.warn("The FastSDMolSupplier class has been deprecated, please use Chem.SDMolSupplier instead",DeprecationWarning) 
15   
16 -class FastSDMolSupplier(Chem.SDMolSupplier):
17 pass
18