write new code. The :mod:`subprocess` module is recommended instead.
(Contributed by Victor Stinner in :gh:`120743`.)
+* :mod:`pdb`:
+ The undocumented ``pdb.Pdb.curframe_locals`` attribtue is now a deprecated
+ read-only property. The low overhead dynamic frame locals access added in
+ Python 3.13 by PEP 667 means the frame locals cache reference previously
+ stored in this attribute is no longer needed. Derived debuggers should access
+ ``pdb.Pdb.curframe.f_locals`` directly in Python 3.13 and later versions.
+ (Contributed by Tian Gao in :gh:`124369` and :gh:`125951`.)
+
* :mod:`symtable`:
Deprecate :meth:`symtable.Class.get_methods` due to the lack of interest.
(Contributed by Bénédikt Tran in :gh:`119698`.)
from contextlib import contextmanager
from rlcompleter import Completer
from types import CodeType
+from warnings import deprecated
class Restart(Exception):
]
self.rcLines = []
+ @property
+ @deprecated("The frame locals reference is no longer cached. Use 'curframe.f_locals' instead.")
+ def curframe_locals(self):
+ return self.curframe.f_locals
+
+ @curframe_locals.setter
+ @deprecated("Setting 'curframe_locals' no longer has any effect. Update the contents of 'curframe.f_locals' instead.")
+ def curframe_locals(self, value):
+ pass
+
# Override Bdb methods
def user_call(self, frame, argument_list):
cm(
'pdb',
# pyclbr does not handle elegantly `typing` or properties
- ignore=('Union', '_ModuleTarget', '_ScriptTarget', '_ZipTarget'),
+ ignore=('Union', '_ModuleTarget', '_ScriptTarget', '_ZipTarget', 'curframe_locals'),
)
cm('pydoc', ignore=('input', 'output',)) # properties
--- /dev/null
+Deprecate ``pdb.Pdb.curframe_locals``