[issue37601] shutil.make_archive does not follow symlinks for zip archives

2019-07-16 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This looks like a reasonable addition to me. Other APIs in shutil have follow_symlinks parameter. ➜ /tmp ls -al sym total 0 drwxr-xr-x 3 karthikeyansingaravelan staff 102 Jul 16 15:52 . drwxr-xr-x 58 karthikeyansingaravelan staff 1972 Jul 16

[issue37601] shutil.make_archive does not follow symlinks for zip archives

2019-07-15 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- type: -> enhancement versions: +Python 3.9 -Python 3.7 ___ Python tracker ___ ___ Python-bu

[issue37601] shutil.make_archive does not follow symlinks for zip archives

2019-07-15 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +giampaolo.rodola, tarek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue37601] shutil.make_archive does not follow symlinks for zip archives

2019-07-15 Thread Kevin Teague
New submission from Kevin Teague : Zip archives created with shutil.make_archive will not follow symlinks. The shutil._make_zipfile uses os.walk: for dirpath, dirnames, filenames in os.walk(base_dir) os.walk has the followlinks parameter: for dirpath, dirnames, filenames in os.walk(b