fix [#26757] Python console: help() doesn't work anymore

also quiet some warnings & add docstrings to bpy module which was shaowing the GPL header in its help() message.
This commit is contained in:
Campbell Barton 2011-04-03 23:11:00 +00:00
parent 9decca10e0
commit 65b13c8089
3 changed files with 20 additions and 16 deletions

@ -18,6 +18,10 @@
# <pep8 compliant>
"""
Give access to blender data and utility functions.
"""
# internal blender C module
import _bpy
from _bpy import types, props, app

@ -34,7 +34,7 @@ def add_scrollback(text, text_type):
def replace_help(namespace):
def _help(value):
def _help(*args):
# because of how the console works. we need our own help() pager func.
# replace the bold function because it adds crazy chars
import pydoc
@ -42,7 +42,7 @@ def replace_help(namespace):
pydoc.Helper.getline = lambda self, prompt: None
pydoc.TextDoc.use_bold = lambda self, text: text
help(value)
pydoc.help(*args)
namespace["help"] = _help

@ -82,25 +82,13 @@ static EnumPropertyItem space_pchan_items[] = {
{1, "LOCAL", 0, "Local Space", ""},
{0, NULL, 0, NULL, NULL}};
#ifdef RNA_RUNTIME
static EnumPropertyItem space_object_items[] = {
{0, "WORLD", 0, "World Space", ""},
{1, "LOCAL", 0, "Local Space", ""},
{0, NULL, 0, NULL, NULL}};
static EnumPropertyItem constraint_ik_type_items[] ={
{CONSTRAINT_IK_COPYPOSE, "COPY_POSE", 0, "Copy Pose", ""},
{CONSTRAINT_IK_DISTANCE, "DISTANCE", 0, "Distance", ""},
{0, NULL, 0, NULL, NULL},
};
static EnumPropertyItem constraint_ik_axisref_items[] ={
{0, "BONE", 0, "Bone", ""},
{CONSTRAINT_IK_TARGETAXIS, "TARGET", 0, "Target", ""},
{0, NULL, 0, NULL, NULL},
};
#ifdef RNA_RUNTIME
#include "BKE_animsys.h"
#include "BKE_action.h"
#include "BKE_constraint.h"
@ -466,6 +454,18 @@ static void rna_def_constraint_kinematic(BlenderRNA *brna)
StructRNA *srna;
PropertyRNA *prop;
static EnumPropertyItem constraint_ik_axisref_items[] ={
{0, "BONE", 0, "Bone", ""},
{CONSTRAINT_IK_TARGETAXIS, "TARGET", 0, "Target", ""},
{0, NULL, 0, NULL, NULL},
};
static EnumPropertyItem constraint_ik_type_items[] ={
{CONSTRAINT_IK_COPYPOSE, "COPY_POSE", 0, "Copy Pose", ""},
{CONSTRAINT_IK_DISTANCE, "DISTANCE", 0, "Distance", ""},
{0, NULL, 0, NULL, NULL},
};
srna= RNA_def_struct(brna, "KinematicConstraint", "Constraint");
RNA_def_struct_ui_text(srna, "Kinematic Constraint", "Inverse Kinematics");
RNA_def_struct_sdna_from(srna, "bKinematicConstraint", "data");