[issue43875] path.glob with ** does not always detect symlink loops

2021-04-16 Thread Reuben Thomas
Change by Reuben Thomas : -- components: +Library (Lib) versions: +Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue43875] path.glob with ** does not always detect symlink loops

2021-04-16 Thread Reuben Thomas
New submission from Reuben Thomas : Example session: $ mkdir foo $ cd foo $ ln -s .. bar $ ln -s .. baz $ python3.9 Python 3.9.0+ (default, Oct 20 2020, 08:43:38) [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from glob import glob >>>