معرفی شرکت ها


dynscope-0.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Dynamic Scope for Python
ویژگی مقدار
سیستم عامل -
نام فایل dynscope-0.1
نام dynscope
نسخه کتابخانه 0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Georg Bauer
ایمیل نویسنده gb@rfc1437.de
آدرس صفحه اصلی http://bitbucket.org/rfc1437/dynscope/
آدرس اینترنتی https://pypi.org/project/dynscope/
مجوز MIT/X
-*- restructuredtext -*- Dynamic Scope for Python ================================ This package implements simple dynamic scope syntactic sugar for Python. It allows to (IMO elegantly) use dynamically scoped variables where you need them with a scheme-like semantic. Install is quite standard: easy_install dynscope or just download the sources and run setup.py install. There are testcases you can run with setup.py test, too. I test and work with it under Python 2.6. How to use dynamically scoped variables ---------------------------------------- >>> from dynscope import flet, fluid >>> with flet(anton=5, berta=6): >>> print fluid.anton*fluid.berta >>> print fluid.anton*fluid.berta The first print will print 30, the second one will raise an exception, since those variables are not defined. There is a base-layer of fluid definitions (think of them as normal globals, only that they are per-thread or per-coroutine if using for example gevent with full patching) that you can use, too. But it's often much better style to restrict fluids to the dynamic scope that actually expects them. Unrestricted globals are far more often the wrong choice than the right choice. But where you can make use of them is to set defaults for dynamically scoped variables so that functions can run outside flet scopes.


نحوه نصب


نصب پکیج whl dynscope-0.1:

    pip install dynscope-0.1.whl


نصب پکیج tar.gz dynscope-0.1:

    pip install dynscope-0.1.tar.gz