Skip to content

Commit cdf5b2d

Browse files
committed
rename rcFile to rc_file
1 parent 4058d33 commit cdf5b2d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/pdb.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -395,15 +395,15 @@ def __init__(self, completekey='tab', stdin=None, stdout=None, skip=None,
395395
local_rcfile = os.path.abspath(".pdbrc")
396396

397397
try:
398-
with open(home_rcfile, encoding='utf-8') as rcFile:
399-
self.rcLines.extend(rcFile)
398+
with open(home_rcfile, encoding='utf-8') as rc_file:
399+
self.rcLines.extend(rc_file)
400400
except OSError:
401401
pass
402402

403403
if local_rcfile != home_rcfile:
404404
try:
405-
with open(local_rcfile, encoding='utf-8') as rcFile:
406-
self.rcLines.extend(rcFile)
405+
with open(local_rcfile, encoding='utf-8') as rc_file:
406+
self.rcLines.extend(rc_file)
407407
except OSError:
408408
pass
409409

0 commit comments

Comments
 (0)