Skip to content

Commit 7767efa

Browse files
committed
Clarify comment
1 parent 2d8c231 commit 7767efa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/pdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def __init__(self, target):
190190
print(f'Error: {target} is a directory')
191191
sys.exit(1)
192192

193-
# Be careful with realpath to support pseudofilesystems (GH-142315).
193+
# Be careful with realpath to support anonymous pipes like '<(...)' (GH-142315).
194194
realpath = os.path.realpath(target)
195195
self._target = realpath if os.path.exists(realpath) else target
196196

0 commit comments

Comments
 (0)