[issue24132] Direct sub-classing of pathless.Path

2015-05-05 Thread Ned Deily
Changes by Ned Deily : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue24132] Direct sub-classing of pathless.Path

2015-05-05 Thread Christophe BAL
New submission from Christophe BAL: Hello. I have noticed a problem with the following code. from pathlib import Path class PPath(Path): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) test = PPath("dir", "test.txt") This gives the following error message.