diff options
author | Anders Lorentsen <Phaqui@gmail.com> | 2017-11-07 00:47:43 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-11-07 00:47:43 (GMT) |
commit | a22a127458d75b9b7e65e058f5db5ff705df5696 (patch) | |
tree | 02671d0bdaea01716305c713cc3a67433318aed2 /Misc | |
parent | edb13ae48c17210fa4b2d40a6833ca09db5c121b (diff) | |
download | cpython-a22a127458d75b9b7e65e058f5db5ff705df5696.zip cpython-a22a127458d75b9b7e65e058f5db5ff705df5696.tar.gz cpython-a22a127458d75b9b7e65e058f5db5ff705df5696.tar.bz2 |
bpo-31843: sqlite3.connect() now accepts PathLike objects as database name (#4299)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-07-00-37-50.bpo-31843.lM2gkR.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-07-00-37-50.bpo-31843.lM2gkR.rst b/Misc/NEWS.d/next/Library/2017-11-07-00-37-50.bpo-31843.lM2gkR.rst new file mode 100644 index 0000000..c3142f0 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-07-00-37-50.bpo-31843.lM2gkR.rst @@ -0,0 +1,2 @@ +*database* argument of sqlite3.connect() now accepts a +:term:`path-like object`, instead of just a string. |