aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2011-02-09 10:40:40 +0100
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2011-02-09 10:40:40 +0100
commitc2a6ea961f26ea57378f214f4ba318c091fd9e3a (patch)
treef26ba31f4cbfffbe8cbd2be8044bf46ec1ddbe8e /lib_pypy
parentremove references to svn. Fix typo. Add the information that you will need (diff)
downloadpypy-c2a6ea961f26ea57378f214f4ba318c091fd9e3a.tar.gz
pypy-c2a6ea961f26ea57378f214f4ba318c091fd9e3a.tar.bz2
pypy-c2a6ea961f26ea57378f214f4ba318c091fd9e3a.zip
Fix a few failures in test_sqlite
Diffstat (limited to 'lib_pypy')
-rw-r--r--lib_pypy/_sqlite3.py23
1 files changed, 20 insertions, 3 deletions
diff --git a/lib_pypy/_sqlite3.py b/lib_pypy/_sqlite3.py
index 0fa83e12f6..e6efd1723d 100644
--- a/lib_pypy/_sqlite3.py
+++ b/lib_pypy/_sqlite3.py
@@ -339,6 +339,8 @@ class Connection(object):
def _set_isolation_level(self, val):
if val is None:
self.commit()
+ if isinstance(val, unicode):
+ val = str(val)
self._isolation_level = val
isolation_level = property(_get_isolation_level, _set_isolation_level)
@@ -461,7 +463,7 @@ class Connection(object):
class Cursor(object):
def __init__(self, con):
if not isinstance(con, Connection):
- raise ValueError
+ raise TypeError
con._check_thread()
con._check_closed()
self.connection = con
@@ -532,7 +534,7 @@ class Cursor(object):
while True:
if not sqlite.sqlite3_complete(next_char):
- raise ProgrammingError, "Incomplete statement '%s'" % next_char.value
+ raise OperationalError, "Incomplete statement '%s'" % next_char.value
ret = sqlite.sqlite3_prepare_v2(self.connection.db, next_char, -1, byref(statement), byref(next_char))
if ret != SQLITE_OK:
raise self.connection._get_exception(ret)
@@ -587,7 +589,7 @@ class Cursor(object):
self._check_closed()
# XXX this should do reset and set statement to None it seems
- def setinputsize(self, *args):
+ def setinputsizes(self, *args):
pass
def setoutputsize(self, *args):
pass
@@ -819,6 +821,21 @@ class Row(object):
def keys(self):
return [desc[0] for desc in self.description]
+ def __eq__(self, other):
+ if not isinstance(other, Row):
+ return NotImplemented
+ if self.description != other.description:
+ return False
+ if self.values != other.values:
+ return False
+ return True
+
+ def __ne__(self, other):
+ return not self == other
+
+ def __hash__(self):
+ return hash(tuple(self.description)) ^ hash(tuple(self.values))
+
def _check_remaining_sql(s):
state = "NORMAL"
for char in s: