_make_boundary(): Fix for SF bug #745478, broken boundary calculation
[python/dscho.git] / Lib / bsddb / db.py
blobc1749dfa0786ba771ede3c6d7adb242402f5bb8c
1 #----------------------------------------------------------------------
2 # Copyright (c) 1999-2001, Digital Creations, Fredericksburg, VA, USA
3 # and Andrew Kuchling. All rights reserved.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are
7 # met:
9 # o Redistributions of source code must retain the above copyright
10 # notice, this list of conditions, and the disclaimer that follows.
12 # o Redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions, and the following disclaimer in
14 # the documentation and/or other materials provided with the
15 # distribution.
17 # o Neither the name of Digital Creations nor the names of its
18 # contributors may be used to endorse or promote products derived
19 # from this software without specific prior written permission.
21 # THIS SOFTWARE IS PROVIDED BY DIGITAL CREATIONS AND CONTRIBUTORS *AS
22 # IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
24 # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DIGITAL
25 # CREATIONS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
28 # OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
30 # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
31 # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
32 # DAMAGE.
33 #----------------------------------------------------------------------
36 # This module is just a placeholder for possible future expansion, in
37 # case we ever want to augment the stuff in _db in any way. For now
38 # it just simply imports everything from _db.
40 from _bsddb import *
41 from _bsddb import __version__
43 if version() < (3, 1, 0):
44 raise ImportError, "BerkeleyDB 3.x symbols not found. Perhaps python was statically linked with an older version?"