add bound and lerp to builtins

This commit is contained in:
Darren Ranalli 2007-01-25 18:51:01 +00:00
parent 6e32e478cf
commit 35cefd4463
1 changed files with 4 additions and 1 deletions

View File

@ -24,7 +24,8 @@ __all__ = ['enumerate', 'unique', 'indent', 'nonRepeatingRandomList',
'ScratchPad', 'Sync', 'RefCounter', 'itype', 'getNumberedTypedString',
'printNumberedTyped', 'DelayedCall', 'DelayedFunctor',
'FrameDelayedCallback', 'ArgumentEater', 'ClassTree', 'getBase',
'superFlattenShip','HotkeyBreaker']
'superFlattenShip','HotkeyBreaker','logMethodCalls','GoldenRatio',
'GoldenRectangle']
import types
import string
@ -2652,3 +2653,5 @@ __builtin__._notIn = _notIn
__builtin__.itype = itype
__builtin__.exceptionLogged = exceptionLogged
__builtin__.appendStr = appendStr
__builtin__.bound = bound
__builtin__.lerp = lerp