Home | History | Annotate | Download | only in test

Lines Matching defs:Cursor

37         cur = self.con.cursor()
44 cur = self.con.cursor()
55 cursors = [con.cursor() for x in xrange(5)]
66 cur = self.con.cursor()
82 cur = con.cursor()
162 Verifies that cursor methods check wether base class __init__ was called.
164 class Cursor(sqlite.Cursor):
169 cur = Cursor(con)
188 cur = con.cursor()
197 Verifies that subclassed cursor classes are correctly registered with
201 def cursor(self):
202 return Cursor(self)
204 class Cursor(sqlite.Cursor):
206 sqlite.Cursor.__init__(self, con)
209 cur = con.cursor()
235 cur = self.con.cursor()
271 Recursively using a cursor, such as when reusing it from a generator led to segfaults.
272 Now we catch recursive cursor usage and raise a ProgrammingError.
276 cur = con.cursor()
297 cur = con.cursor()