We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8754566 commit 649b7d1Copy full SHA for 649b7d1
Doc/library/pdb.rst
@@ -513,7 +513,7 @@ can be overridden by the local file.
513
:file:`.pdbrc` file)::
514
515
# Print instance variables (usage "pi classInst")
516
- 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]}")
517
# Print instance variables in self
518
alias ps pi self
519
0 commit comments