[pypy-commit] pypy default: remove conditional skip, this was a ctypes limitation

bdkearns noreply at buildbot.pypy.org
Sat Apr 6 06:53:20 CEST 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r63089:53926a2ab1b9
Date: 2013-04-06 00:28 -0400
http://bitbucket.org/pypy/pypy/changeset/53926a2ab1b9/

Log:	remove conditional skip, this was a ctypes limitation

diff --git a/pypy/module/test_lib_pypy/test_sqlite3.py b/pypy/module/test_lib_pypy/test_sqlite3.py
--- a/pypy/module/test_lib_pypy/test_sqlite3.py
+++ b/pypy/module/test_lib_pypy/test_sqlite3.py
@@ -1,9 +1,5 @@
 """Tests for _sqlite3.py"""
 
-import sys
-if sys.version_info < (2, 7):
-    skip("lib_pypy._sqlite3 doesn't work with python < 2.7")
-
 import pytest
 from lib_pypy import _sqlite3
 


More information about the pypy-commit mailing list