using functools with IronPython

后端 未结 1 1184
傲寒
傲寒 2021-01-22 12:02

I\'m using the functools library with IronPython.

It works fine on the development machine, but in production the library can\'t be imported. Exception is thrown:

<
1条回答
  •  清歌不尽
    2021-01-22 12:38

    Normally _functools is the native component that functools.py wraps. Given that native modules are not supported in IronPython (as of now) the relevant functionality is implemented in IronPython.Modules.dll (as seen here).

    IronPython.Modules.dll is probably what you are missing.

    0 讨论(0)
提交回复
热议问题