[issue33496] Accept Pathlib paths for sqlite file

2018-05-15 Thread devala
devala added the comment: Resolved in 3.7. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ __

[issue33496] Accept Pathlib paths for sqlite file

2018-05-15 Thread John Reese
John Reese added the comment: Looks like this is already changed for 3.7: see commit a22a127458 -- ___ Python tracker ___ ___ Python

[issue33496] Accept Pathlib paths for sqlite file

2018-05-15 Thread John Reese
Change by John Reese : -- nosy: +jreese ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue33496] Accept Pathlib paths for sqlite file

2018-05-14 Thread devala
New submission from devala : I'd love to be able to pass pathlib paths to sqlite's connect conn = sqlite3.connect(DB_FILE) TypeError: argument 1 must be str The workaround is not hard (str(DB_FILE), but reducing friction in using pathlib would be great. -- components: Library (Lib) me