diff options
author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-04-26 13:30:48 +0000 |
---|---|---|
committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-04-26 13:30:48 +0000 |
commit | 439cb4047fb583d08149f28e2ce66a8edfe0efa7 (patch) | |
tree | 47ef30e70bf1d757f08b133d3aa47704db13c714 /django/db/backends/util.py | |
parent | 6c02565e4fb92c4cc3bfb45bcc89eb9aa299efdc (diff) | |
download | django-439cb4047fb583d08149f28e2ce66a8edfe0efa7.tar.gz |
Fixed #4040 -- Changed uses of has_key() to "in". Slight performance
improvement and forward-compatible with future Python releases. Patch from Gary
Wilson.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5091 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/util.py')
-rw-r--r-- | django/db/backends/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/util.py b/django/db/backends/util.py index d8f86fef4f..d14a337ca2 100644 --- a/django/db/backends/util.py +++ b/django/db/backends/util.py @@ -33,7 +33,7 @@ class CursorDebugWrapper(object): }) def __getattr__(self, attr): - if self.__dict__.has_key(attr): + if attr in self.__dict__: return self.__dict__[attr] else: return getattr(self.cursor, attr) |