Skip to content

Releases: lejar/traitlite

v0.0.3

30 Nov 20:14
Compare
Choose a tag to compare

New features:

  • Added a new submodule which provides some traits that are very useful for debugging
    • traitlite.debug.BreakOnRead
      • initializes debugger when the trait is accessed
    • traitlite.debug.BreakOnWrite
      • initializes the debugger when the trait is written to
    • traitlite.debug.BreakOnChange
      • takes a function which receives the new value and initializes the debugger if said function returns True
    • traitlite.debug.BreakOnChangeDelta
      • takes a function which receives the old and new values and initializes the debugger if said function returns True

v0.0.2

16 Sep 15:28
Compare
Choose a tag to compare

New features:

  • Added ability to specify default functions for the following traits:
    • HasCallback
    • HasCallbackDelta
    • HasValidator
    • HasValidatorDelta