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.
This commit is contained in:
Jeroen Bakker 2022-09-26 08:18:17 +02:00
parent 34477bbfcd
commit b4605f6158
1 changed files with 1 additions and 1 deletions

View File

@ -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",