summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2023-12-13 12:00:21 (GMT)
committerGitHub <noreply@github.com>2023-12-13 12:00:21 (GMT)
commit428c9812cb4ff3521e5904719224fe63fba5370a (patch)
tree65335e5e53acffbc42c71a1ba52616e022abe13a /Misc
parent3531ea441b8b76bff90d2ecc062335da65fd3341 (diff)
downloadcpython-428c9812cb4ff3521e5904719224fe63fba5370a.zip
cpython-428c9812cb4ff3521e5904719224fe63fba5370a.tar.gz
cpython-428c9812cb4ff3521e5904719224fe63fba5370a.tar.bz2
gh-112962: in dis module, put cache information in the Instruction instead of creating fake Instructions to represent it (#113016)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-12-12-16-32-55.gh-issue-112962.ZZWXZn.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-12-12-16-32-55.gh-issue-112962.ZZWXZn.rst b/Misc/NEWS.d/next/Library/2023-12-12-16-32-55.gh-issue-112962.ZZWXZn.rst
new file mode 100644
index 0000000..b99e6bc
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-12-12-16-32-55.gh-issue-112962.ZZWXZn.rst
@@ -0,0 +1,3 @@
+:mod:`dis` module functions add cache information to the
+:class:`~dis.Instruction` instance rather than creating fake
+:class:`~dis.Instruction` instances to represent the cache entries.