[issue45133] Open functions in dbm submodule should support path-like objects

2021-09-08 Thread Hakan Çelik
Change by Hakan Çelik : -- nosy: +hakancelik nosy_count: 1.0 -> 2.0 pull_requests: +26668 pull_request: https://github.com/python/cpython/pull/20274 ___ Python tracker ___

[issue45133] Open functions in dbm submodule should support path-like objects

2021-09-07 Thread Ethan Furman
Change by Ethan Furman : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue45133] Open functions in dbm submodule should support path-like objects

2021-09-07 Thread David Mertz
David Mertz added the comment: Oops... I missed prior closely related or identical issue at: https://bugs.python.org/issue40563 -- resolution: -> duplicate ___ Python tracker

[issue45133] Open functions in dbm submodule should support path-like objects

2021-09-07 Thread David Mertz
New submission from David Mertz : Evan Greenup via Python-ideas Currently, in Python 3.9, `dbm.open()`, `dbm.gnu.open()` and `dbm.ndbm.open()` doesn't support path-like object, class defined in `pathlib`. It would be nice to add support with it. -- components: Library (Lib),