Skip to content

ExcelPython v2.0.6

Compare
Choose a tag to compare
@ericremoreynolds ericremoreynolds released this 29 Sep 11:25
· 26 commits to master since this release
  • Added variable arguments length UDFs

    @xlfunc
    def my_udf(x, *y):
        ...

    All attributes apply to each single argument passed, for example

    @xlfunc
    @xlarg("y", dims=2)
    def my_udf(x, *y):
        ...

    will ensure that each element of y is 2-dimensional, not y itself.

  • VBA7/64-bit PtrSafe bug fix in xlpython.bas

  • Fixed bugs relating to issues #12 and #14