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
AgeCommit message (Collapse)Author
2016-02-04Use contextlib for temporary py console overridesCampbell Barton
Using context overrides means stdout/stderr overrides can't be left set by accident.
2015-02-26Workaround T43491: Python readline causes crashCampbell Barton
loading 'readline' module could crash blender if 'libedit' was already linked (via LLVM). Workaround the problem for now since we don't even need readline, a _real_ fix likely involves changing how LLVM or Python are built.
2013-05-24disable auto indent when pasting text into the python console.Campbell Barton
2013-05-08auto indent for multi-line python statements.Campbell Barton
2013-02-08patch [#34163] "Zoom" in Python console startup messageCampbell Barton
from Shinsuke Irie (irie)
2012-10-12fix for own error in copy_as_script(), imports were incorrect.Campbell Barton
2012-10-08style cleanup: pep8Campbell Barton
2012-09-27pep8 cleanupCampbell Barton
2012-08-20copy as script operator for the console, so you can copy input from a ↵Campbell Barton
console for use in a textblock.
2012-07-29style cleanupCampbell Barton
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
Should also fix the broken py ops tips...
2012-06-20add in convenience var 'D = bpy.data' - to the python console, add note for ↵Campbell Barton
C, D - in initial message.
2012-04-07* Replace some more Blender 2.5x with Blender 2.6x and some code cleanup. Thomas Dinges
2012-03-31move debug flag into its own global var (G.debug), split up debug options.Campbell Barton
--debug --debug-ffmpeg --debug-python --debug-events --debug-wm This makes debug output easier to read - event debug prints would flood output too much before. For convenience: --debug-all turns all debug flags on (works as --debug did before). also removed some redundant whitespace in debug prints and prefix some prints with __func__ to give some context.
2011-10-23minor formatting edits (80 char width)Campbell Barton
2011-10-17correct spelling errors in commentsCampbell Barton
2011-09-19/release/scripts: Removed final points in UI strings and messages.Bastien Montagne
2011-08-25executing operators that changed the context from the console wasnt ↵Campbell Barton
returning an operator set/flag.
2011-06-10added a check to console auto-compleation for pythons struct_seq type, so ↵Campbell Barton
bpy.app and sys.float_info autocompleate their attributes rather then bring treated as a typle.
2011-04-12less alarming warnings about the python api not being stable in online docs ↵Campbell Barton
and remove from interactive console.
2011-04-04fix [#26757] Python console: help() doesn't work anymoreCampbell Barton
also quiet some warnings & add docstrings to bpy module which was shaowing the GPL header in its help() message.
2011-03-21move script directories for internal blender scripts.Campbell Barton
ui/ --> startup/bl_ui op/ --> startup/bl_operators scripts/startup/ is now the only auto-loading script dir which gives some speedup for blender loading too. ~/.blender/2.56/scripts/startup works for auto-loading scripts too.