From 69b8caa23a598f3192981898eb213f9578fbf0be Mon Sep 17 00:00:00 2001 From: Steve Holden Date: Wed, 2 Feb 2005 18:47:18 +0000 Subject: [PATCH] Simplify string comparison using startswith() --- Lib/bsddb/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/bsddb/db.py b/Lib/bsddb/db.py index b2ee14e5375..3bd0c8ba4e0 100644 --- a/Lib/bsddb/db.py +++ b/Lib/bsddb/db.py @@ -37,7 +37,7 @@ # case we ever want to augment the stuff in _db in any way. For now # it just simply imports everything from _db. -if __name__[:len('bsddb3.')] == 'bsddb3.': +if __name__.startswith('bsddb3.'): # import _pybsddb binary as it should be the more recent version from # a standalone pybsddb addon package than the version included with # python as bsddb._bsddb.