# Bug report ### Bug description: While os.path.exists("") correctly returns False, the same input with Path("").exists() returns True. ```pycon >>> from pathlib import Path >>> import os >>> Path("").exists() True >>> os.path.exists("") False >>> ``` ### CPython versions tested on: 3.13 ### Operating systems tested on: Linux <!-- gh-linked-prs --> ### Linked PRs * gh-140993 * gh-157293 <!-- /gh-linked-prs -->
Bug report
Bug description:
While os.path.exists("") correctly returns False, the same input with Path("").exists() returns True.
CPython versions tested on:
3.13
Operating systems tested on:
Linux
Linked PRs