mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-22 08:56:34 +03:00
Some light cleanup for Py3 conversion.
Either flagged as warning by python2.6 -3 or converted by 2to3.
This commit is contained in:
parent
a30e461038
commit
31093a7a58
|
@ -26,6 +26,7 @@ and classes untill a better place in the distribution is found.
|
|||
# License for more details.
|
||||
|
||||
import os
|
||||
import sys
|
||||
import time
|
||||
import codecs
|
||||
import warnings
|
||||
|
@ -47,7 +48,7 @@ class DictCursorBase(_cursor):
|
|||
"""Base class for all dict-like cursors."""
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
if kwargs.has_key('row_factory'):
|
||||
if 'row_factory' in kwargs:
|
||||
row_factory = kwargs['row_factory']
|
||||
del kwargs['row_factory']
|
||||
else:
|
||||
|
@ -140,20 +141,17 @@ class DictRow(list):
|
|||
self[:] = [None] * len(cursor.description)
|
||||
|
||||
def __getitem__(self, x):
|
||||
if type(x) != int:
|
||||
if not isinstance(x, int):
|
||||
x = self._index[x]
|
||||
return list.__getitem__(self, x)
|
||||
|
||||
def __setitem__(self, x, v):
|
||||
if type(x) != int:
|
||||
if not isinstance(x, int):
|
||||
x = self._index[x]
|
||||
list.__setitem__(self, x, v)
|
||||
|
||||
def items(self):
|
||||
res = []
|
||||
for n, v in self._index.items():
|
||||
res.append((n, list.__getitem__(self, v)))
|
||||
return res
|
||||
return list(self.iteritems())
|
||||
|
||||
def keys(self):
|
||||
return self._index.keys()
|
||||
|
@ -162,7 +160,7 @@ class DictRow(list):
|
|||
return tuple(self[:])
|
||||
|
||||
def has_key(self, x):
|
||||
return self._index.has_key(x)
|
||||
return x in self._index
|
||||
|
||||
def get(self, x, default=None):
|
||||
try:
|
||||
|
@ -171,7 +169,7 @@ class DictRow(list):
|
|||
return default
|
||||
|
||||
def iteritems(self):
|
||||
for n, v in self._index.items():
|
||||
for n, v in self._index.iteritems():
|
||||
yield n, list.__getitem__(self, v)
|
||||
|
||||
def iterkeys(self):
|
||||
|
@ -181,10 +179,18 @@ class DictRow(list):
|
|||
return list.__iter__(self)
|
||||
|
||||
def copy(self):
|
||||
return dict(self.items())
|
||||
return dict(self.iteritems())
|
||||
|
||||
def __contains__(self, x):
|
||||
return self._index.__contains__(x)
|
||||
return x in self._index
|
||||
|
||||
# grop the crusty Py2 methods
|
||||
if sys.version_info[0] > 2:
|
||||
items = iteritems; del iteritems
|
||||
keys = iterkeys; del iterkeys
|
||||
values = itervalues; del itervalues
|
||||
del has_key
|
||||
|
||||
|
||||
class RealDictConnection(_connection):
|
||||
"""A connection that uses `RealDictCursor` automatically."""
|
||||
|
@ -615,7 +621,10 @@ class HstoreAdapter(object):
|
|||
""", regex.VERBOSE)
|
||||
|
||||
# backslash decoder
|
||||
if sys.version_info[0] < 3:
|
||||
_bsdec = codecs.getdecoder("string_escape")
|
||||
else:
|
||||
_bsdec = codecs.getdecoder("unicode_escape")
|
||||
|
||||
def parse(self, s, cur, _decoder=_bsdec):
|
||||
"""Parse an hstore representation in a Python string.
|
||||
|
|
|
@ -100,7 +100,7 @@ class AbstractConnectionPool(object):
|
|||
if self.closed: raise PoolError("connection pool is closed")
|
||||
if key is None: key = self._getkey()
|
||||
|
||||
if self._used.has_key(key):
|
||||
if key in self._used:
|
||||
return self._used[key]
|
||||
|
||||
if self._pool:
|
||||
|
|
|
@ -18,7 +18,7 @@ class CursorTests(unittest.TestCase):
|
|||
cur = conn.cursor()
|
||||
cur.execute("create temp table test_exc (data int);")
|
||||
def buggygen():
|
||||
yield 1/0
|
||||
yield 1//0
|
||||
self.assertRaises(ZeroDivisionError,
|
||||
cur.executemany, "insert into test_exc values (%s)", buggygen())
|
||||
cur.close()
|
||||
|
|
|
@ -243,18 +243,18 @@ class DatetimeTests(unittest.TestCase, CommonDatetimeTestsMixin):
|
|||
|
||||
def test_type_roundtrip_date(self):
|
||||
from datetime import date
|
||||
self._test_type_roundtrip(date(2010,05,03))
|
||||
self._test_type_roundtrip(date(2010,5,3))
|
||||
|
||||
def test_type_roundtrip_datetime(self):
|
||||
from datetime import datetime
|
||||
dt = self._test_type_roundtrip(datetime(2010,05,03,10,20,30))
|
||||
dt = self._test_type_roundtrip(datetime(2010,5,3,10,20,30))
|
||||
self.assertEqual(None, dt.tzinfo)
|
||||
|
||||
def test_type_roundtrip_datetimetz(self):
|
||||
from datetime import datetime
|
||||
import psycopg2.tz
|
||||
tz = psycopg2.tz.FixedOffsetTimezone(8*60)
|
||||
dt1 = datetime(2010,05,03,10,20,30, tzinfo=tz)
|
||||
dt1 = datetime(2010,5,3,10,20,30, tzinfo=tz)
|
||||
dt2 = self._test_type_roundtrip(dt1)
|
||||
self.assertNotEqual(None, dt2.tzinfo)
|
||||
self.assertEqual(dt1, dt2)
|
||||
|
@ -269,11 +269,11 @@ class DatetimeTests(unittest.TestCase, CommonDatetimeTestsMixin):
|
|||
|
||||
def test_type_roundtrip_date_array(self):
|
||||
from datetime import date
|
||||
self._test_type_roundtrip_array(date(2010,05,03))
|
||||
self._test_type_roundtrip_array(date(2010,5,3))
|
||||
|
||||
def test_type_roundtrip_datetime_array(self):
|
||||
from datetime import datetime
|
||||
self._test_type_roundtrip_array(datetime(2010,05,03,10,20,30))
|
||||
self._test_type_roundtrip_array(datetime(2010,5,3,10,20,30))
|
||||
|
||||
def test_type_roundtrip_time_array(self):
|
||||
from datetime import time
|
||||
|
@ -426,11 +426,11 @@ class mxDateTimeTests(unittest.TestCase, CommonDatetimeTestsMixin):
|
|||
|
||||
def test_type_roundtrip_date(self):
|
||||
from mx.DateTime import Date
|
||||
self._test_type_roundtrip(Date(2010,05,03))
|
||||
self._test_type_roundtrip(Date(2010,5,3))
|
||||
|
||||
def test_type_roundtrip_datetime(self):
|
||||
from mx.DateTime import DateTime
|
||||
self._test_type_roundtrip(DateTime(2010,05,03,10,20,30))
|
||||
self._test_type_roundtrip(DateTime(2010,5,3,10,20,30))
|
||||
|
||||
def test_type_roundtrip_time(self):
|
||||
from mx.DateTime import Time
|
||||
|
@ -442,11 +442,11 @@ class mxDateTimeTests(unittest.TestCase, CommonDatetimeTestsMixin):
|
|||
|
||||
def test_type_roundtrip_date_array(self):
|
||||
from mx.DateTime import Date
|
||||
self._test_type_roundtrip_array(Date(2010,05,03))
|
||||
self._test_type_roundtrip_array(Date(2010,5,3))
|
||||
|
||||
def test_type_roundtrip_datetime_array(self):
|
||||
from mx.DateTime import DateTime
|
||||
self._test_type_roundtrip_array(DateTime(2010,05,03,10,20,30))
|
||||
self._test_type_roundtrip_array(DateTime(2010,5,3,10,20,30))
|
||||
|
||||
def test_type_roundtrip_time_array(self):
|
||||
from mx.DateTime import Time
|
||||
|
|
|
@ -63,7 +63,7 @@ class GreenTests(unittest.TestCase):
|
|||
curs.fetchone()
|
||||
|
||||
# now try to do something that will fail in the callback
|
||||
psycopg2.extensions.set_wait_callback(lambda conn: 1/0)
|
||||
psycopg2.extensions.set_wait_callback(lambda conn: 1//0)
|
||||
self.assertRaises(ZeroDivisionError, curs.execute, "select 2")
|
||||
|
||||
# check that the connection is left in an usable state
|
||||
|
|
Loading…
Reference in New Issue
Block a user