![](https://secure.gravatar.com/avatar/c62592f31d174c5af619deb155307413.jpg?s=120&d=mm&r=g)
I have installed CPython 3.4 64bit and pythonnet-2.1.0.dev1-cp34-none-win_amd64.whl I have tried to use the generic action delegate, but failed. Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 24 2015, 22:44:40) [MSC v.1600 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.
import clr clr.AddReference("System") <System.Reflection.RuntimeAssembly object at 0x0000000002DFAC18> import System def hello(number): ... print(number) ... deleg = System.Action[int](hello) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: unsubscriptable object
However when I want to instantiate a genrics dictionary then it works.
clr.AddReference("System.Collections") <System.Reflection.RuntimeAssembly object at 0x0000000002397550> import System.Collections.Generic dict = System.Collections.Generic.Dictionary[int,str]() dict[5]="asd" print(dict[5]) asd