summaryrefslogtreecommitdiffstats
path: root/Include/cpython
diff options
context:
space:
mode:
authorKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>2021-07-16 15:49:35 (GMT)
committerGitHub <noreply@github.com>2021-07-16 15:49:35 (GMT)
commite9cd47d0e58cd468d6482d7ba59730b134d0d521 (patch)
tree5d68df9c8d44d121d3af2a6338c42a237e472007 /Include/cpython
parent9af34c935185eca497617a216d141c72ffaeae9c (diff)
downloadcpython-e9cd47d0e58cd468d6482d7ba59730b134d0d521.zip
cpython-e9cd47d0e58cd468d6482d7ba59730b134d0d521.tar.gz
cpython-e9cd47d0e58cd468d6482d7ba59730b134d0d521.tar.bz2
Remove legacy opcache structs (GH-27164)
Diffstat (limited to 'Include/cpython')
-rw-r--r--Include/cpython/code.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/cpython/code.h b/Include/cpython/code.h
index 8c00eb9..b232f80 100644
--- a/Include/cpython/code.h
+++ b/Include/cpython/code.h
@@ -23,8 +23,6 @@ typedef uint16_t _Py_CODEUNIT;
# define _Py_MAKECODEUNIT(opcode, oparg) ((opcode)|((oparg)<<8))
#endif
-typedef struct _PyOpcache _PyOpcache;
-
/* Bytecode object */
struct PyCodeObject {