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 38ce56f commit c2672e3Copy full SHA for c2672e3
stdlib/pdb.pyi
@@ -65,7 +65,9 @@ class Pdb(Bdb, Cmd):
65
@deprecated("The frame locals reference is no longer cached. Use 'curframe.f_locals' instead.")
66
def curframe_locals(self) -> Mapping[str, Any]: ...
67
@curframe_locals.setter
68
- @deprecated("Setting 'curframe_locals' no longer has any effect. Update the contents of 'curframe.f_locals' instead.")
+ @deprecated(
69
+ "Setting 'curframe_locals' no longer has any effect as of 3.14. Update the contents of 'curframe.f_locals' instead."
70
+ )
71
def curframe_locals(self, value: Mapping[str, Any]) -> None: ...
72
else:
73
curframe_locals: Mapping[str, Any]
0 commit comments