From b4605f61589e67bcdccc599632ae523bafdf65fe Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Mon, 26 Sep 2022 08:18:17 +0200 Subject: [PATCH] Console: Add gpu python module to list of internal modules. The python GPU module was not mentioned in the list of internal modules. Adding the GPU module to the list allows curious users to find it. --- release/scripts/modules/console_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/modules/console_python.py b/release/scripts/modules/console_python.py index 2aa4caab7f6..5cf55d3c3b5 100644 --- a/release/scripts/modules/console_python.py +++ b/release/scripts/modules/console_python.py @@ -325,7 +325,7 @@ def banner(context): "PYTHON INTERACTIVE CONSOLE %s" % version_string, "", "Builtin Modules: " - "bpy, bpy.data, bpy.ops, bpy.props, bpy.types, bpy.context, bpy.utils, bgl, blf, mathutils", + "bpy, bpy.data, bpy.ops, bpy.props, bpy.types, bpy.context, bpy.utils, bgl, gpu, blf, mathutils", "Convenience Imports: from mathutils import *; from math import *", "Convenience Variables: C = bpy.context, D = bpy.data",