[issue29447] Add os.PathLike support to the tempfile module

2017-05-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: TemporaryDirectory and _TemporaryFileWrapper are *not* paths, as well as ordinal files are not paths. Adding __fspath__() to them looks wrong to me. I think this isn't what Brett meant. -- nosy: +serhiy.storchaka

[issue29447] Add os.PathLike support to the tempfile module

2017-05-02 Thread svelankar
Changes by svelankar : -- nosy: +svelankar ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue29447] Add os.PathLike support to the tempfile module

2017-05-02 Thread svelankar
Changes by svelankar : -- pull_requests: +1519 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue29447] Add os.PathLike support to the tempfile module

2017-02-04 Thread Brett Cannon
New submission from Brett Cannon: The various classes in the tempfile module could implement os.PathLike. -- components: Library (Lib) messages: 287036 nosy: brett.cannon priority: normal severity: normal status: open title: Add os.PathLike support to the tempfile module type: enhancemen