Author: Ronan Lamy <[email protected]>
Branch: py3.6-sqlite
Changeset: r98469:cdcc30d43196
Date: 2020-01-06 22:00 +0100
http://bitbucket.org/pypy/pypy/changeset/cdcc30d43196/
Log: Fix refcounting semantics dependency in stdlib test
diff --git a/lib-python/3/sqlite3/test/regression.py
b/lib-python/3/sqlite3/test/regression.py
--- a/lib-python/3/sqlite3/test/regression.py
+++ b/lib-python/3/sqlite3/test/regression.py
@@ -127,6 +127,7 @@
con.execute("create table foo(bar timestamp)")
con.execute("insert into foo(bar) values (?)",
(datetime.datetime.now(),))
con.execute(SELECT)
+ support.gc_collect() # PyPy change
con.execute("drop table foo")
con.execute("create table foo(bar integer)")
con.execute("insert into foo(bar) values (5)")
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit