Skip to content

Commit e3946e3

Browse files
author
Anthony Baxter
committed
clean up comment
1 parent e792ddd commit e3946e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

roundup/backends/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
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]

0 commit comments

Comments
 (0)