We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d8c231 commit d9932f5Copy full SHA for d9932f5
Lib/pdb.py
@@ -190,7 +190,8 @@ def __init__(self, target):
190
print(f'Error: {target} is a directory')
191
sys.exit(1)
192
193
- # Be careful with realpath to support pseudofilesystems (GH-142315).
+ # Use the original path for files like anonymous pipes
194
+ # from process substitution (GH-142315).
195
realpath = os.path.realpath(target)
196
self._target = realpath if os.path.exists(realpath) else target
197
0 commit comments