Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <jeroen@blender.org>2022-09-26 09:18:17 +0300
committerJeroen Bakker <jeroen@blender.org>2022-09-26 09:18:17 +0300
commitb4605f61589e67bcdccc599632ae523bafdf65fe (patch)
treef5ed930c7e9908a40633f8d08ef77766c93d7073 /release
parent34477bbfcde34d0b27f04eccdddd0a093d8be1c0 (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/modules/console_python.py2
1 files changed, 1 insertions, 1 deletions
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",