◐ Shell
clean mode source ↗

[3.9] bpo-25130: Make SQLite tests more compatible with PyPy (GH-28021) by serhiy-storchaka · Pull Request #28023 · python/cpython

Expand Up @@ -127,11 +127,11 @@ def CheckTypeMapUsage(self): con = sqlite.connect(":memory:",detect_types=sqlite.PARSE_DECLTYPES) con.execute("create table foo(bar timestamp)") con.execute("insert into foo(bar) values (?)", (datetime.datetime.now(),)) con.execute(SELECT) con.execute(SELECT).close() con.execute("drop table foo") con.execute("create table foo(bar integer)") con.execute("insert into foo(bar) values (5)") con.execute(SELECT) con.execute(SELECT).close()
def CheckBindMutatingList(self): # Issue41662: Crash when mutate a list of parameters during iteration. Expand Down