Expose grman disk cache to python

This commit is contained in:
Kovid Goyal 2021-01-01 14:19:10 +05:30
parent 61637a7a74
commit 3ac70042c1
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -1049,6 +1049,7 @@ static PyMethodDef methods[] = {
static PyMemberDef members[] = {
{"image_count", T_PYSSIZET, offsetof(GraphicsManager, image_count), 0, "image_count"},
{"disk_cache", T_OBJECT_EX, offsetof(GraphicsManager, disk_cache), READONLY, "disk_cache"},
{NULL},
};