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 eaafea8 commit 00b5060Copy full SHA for 00b5060
Doc/library/pdb.rst
@@ -509,7 +509,7 @@ by the local file.
509
:file:`.pdbrc` file)::
510
511
# Print instance variables (usage "pi classInst")
512
- alias pi for k in %1.__dict__.keys(): print("%1.",k,"=",%1.__dict__[k])
+ alias pi for k in %1.__dict__.keys(): print(f"%1.{k} = {%1.__dict__[k]}")
513
# Print instance variables in self
514
alias ps pi self
515
0 commit comments