From 345fc2b1f6de7624a09cd91048476e2a932f83fc Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 23 May 2023 15:25:47 +1000 Subject: [PATCH] PyAPI: remove deprecated bpy.app.version_char --- source/blender/python/intern/bpy_app.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/blender/python/intern/bpy_app.c b/source/blender/python/intern/bpy_app.c index e93d975b780..08d0a97db95 100644 --- a/source/blender/python/intern/bpy_app.c +++ b/source/blender/python/intern/bpy_app.c @@ -78,7 +78,6 @@ static PyStructSequence_Field app_info_fields[] = { "Blender versions"}, {"version_string", "The Blender version formatted as a string"}, {"version_cycle", "The release status of this build alpha/beta/rc/release"}, - {"version_char", "Deprecated, always an empty string"}, {"background", "Boolean, True when blender is running without a user interface (started with -b)"}, {"factory_startup", "Boolean, True when blender is running with --factory-startup)"}, @@ -148,7 +147,6 @@ static PyObject *make_app_info(void) SetStrItem(BKE_blender_version_string()); SetStrItem(STRINGIFY(BLENDER_VERSION_CYCLE)); - SetStrItem(""); SetObjItem(PyBool_FromLong(G.background)); SetObjItem(PyBool_FromLong(G.factory_startup));