معرفی شرکت ها


autosuper-0.1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

backport the magical zero-argument super() to python2
ویژگی مقدار
سیستم عامل -
نام فایل autosuper-0.1.0
نام autosuper
نسخه کتابخانه 0.1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Ryan Kelly
ایمیل نویسنده ryan@rfk.id.au
آدرس صفحه اصلی http://github.com/rfk/autosuper
آدرس اینترنتی https://pypi.org/project/autosuper/
مجوز MIT
autosuper: backport the magical zero-argument super() to python2 ================================================================= This is an (awful, hacky, wtf-were-you-thinking) attempt to port the magical zero-argument super() call from python3 to python2. In standard python2 usage of the super() builtin, you have to repeat both the class and instance objects when you call super, like this: class Hello(Base): def hello(self): super(Hello,self).hello() Using autosuper, you can get the friendlier behaviour from python3 where it just figures out the correct call at runtime: class Hello(Base): def hello(self): super().hello() Of course, you can still explicitly pass in the arguments if you want to do something strange. Sometimes you really do want that, e.g. to skip over some classes in the method resolution order. How does it work? By inspecting the calling frame to determine the function object being executed and the object on which it's being called, and then walking the object's __mro__ chain to find out where that function was defined. Yuck, but it seems to work...


نحوه نصب


نصب پکیج whl autosuper-0.1.0:

    pip install autosuper-0.1.0.whl


نصب پکیج tar.gz autosuper-0.1.0:

    pip install autosuper-0.1.0.tar.gz