Oliver Urs Lenz <[email protected]> added the comment:
That would definitely take the sting out of that permanent redirect. But I am
still wondering why we redirect at all. Why not leave redirects to the user and
do:
if os.path.isdir(path):
if not path.endswith('/'):
path = path + '/'
for index in "index.html", "index.htm":
index = os.path.join(path, index)
if os.path.exists(index):
path = index
break
----------
_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue33181>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com