File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1515# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717#
18- # $Id: __init__.py,v 1.32 2004-11-29 02: 07:59 anthonybaxter Exp $
18+ # $Id: __init__.py,v 1.33 2004-11-29 07:34:39 anthonybaxter Exp $
1919
2020'''Container for the hyperdb storage backend implementations.
2121'''
@@ -45,7 +45,8 @@ def get_backend(name):
4545 except :
4646 # import failed, but in versions prior to 2.4, a (broken)
4747 # module is left in sys.modules and package globals;
48- # next import would success although the module is unusable
48+ # subsequent imports would succeed and get the broken module.
49+ # This no longer happens in Python 2.4 and later.
4950 if sys .version_info < (2 , 4 ):
5051 del sys .modules ['.' .join ((__name__ , module_name ))]
5152 del vars [module_name ]
You can’t perform that action at this time.
0 commit comments