[issue29416] Path.mkdir can get into a recursive error loop

2017-02-01 Thread Dan Buchoff
Changes by Dan Buchoff : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue29416> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue29416] Path.mkdir can get into a recursive error loop

2017-02-01 Thread Dan Buchoff
New submission from Dan Buchoff: If a path has a non-existent anchor, Path.mkdir can get into a RecursionError as it tries to recursively create the parent. I expect a more sane error. This is readily reproducible in Windows with `Path('Z:').mkdir(parents=True)` Example executio