2
Tür ipuçlarımda işlev türünü nasıl belirtebilirim?
Mevcut Python 3.5 projemde tip ipuçlarını kullanmak istiyorum. Benim fonksiyonum parametre olarak bir fonksiyon almalıdır. Yazım ipuçlarımda tür işlevini nasıl belirtebilirim? import typing def my_function(name:typing.AnyStr, func: typing.Function) -> None: # However, typing.Function does not exist. # How can I specify the type function for the parameter `func`? # do some …