Closed as not planned
Description
Bug report
Bug description:
I'm not sure if this is a fix or a regression issue?
os.path.isabs
use to return True when a windows path started with /
.
In python 3.13
Python 3.13.0 (tags/v3.13.0:60403a5, Oct 7 2024, 09:38:07) [MSC v.1941 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import os.path
>>> os.path.isabs("/c:")
False
In python 3.12
Python 3.12.7 (tags/v3.12.7:0b05ead, Oct 1 2024, 03:06:41) [MSC v.1941 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import os.path
>>> os.path.isabs("/c:")
True
CPython versions tested on:
3.13
Operating systems tested on:
Windows