From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 7 Oct 2025 20:35:06 +0000 (+0200) Subject: [3.14] Add test for opening an SQLite with bytes path (GH-136331) (GH-137632) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=827c90b8b2425b1d71080c6db18104912b31da61;p=thirdparty%2FPython%2Fcpython.git [3.14] Add test for opening an SQLite with bytes path (GH-136331) (GH-137632) (cherry picked from commit 1bde13b0e99592fbfce3538b27ada29ea09840a6) Co-authored-by: Serhiy Storchaka --- diff --git a/Lib/test/test_sqlite3/test_dbapi.py b/Lib/test/test_sqlite3/test_dbapi.py index 0284f2d10b05..1e595bdbd645 100644 --- a/Lib/test/test_sqlite3/test_dbapi.py +++ b/Lib/test/test_sqlite3/test_dbapi.py @@ -639,6 +639,14 @@ class SerializeTests(unittest.TestCase): class OpenTests(unittest.TestCase): _sql = "create table test(id integer)" + def test_open_with_bytes_path(self): + path = os.fsencode(TESTFN) + self.addCleanup(unlink, path) + self.assertFalse(os.path.exists(path)) + with contextlib.closing(sqlite.connect(path)) as cx: + self.assertTrue(os.path.exists(path)) + cx.execute(self._sql) + def test_open_with_path_like_object(self): """ Checks that we can successfully connect to a database using an object that is PathLike, i.e. has __fspath__(). """