./wip/py-aspects, Lightweight aspect oriented programming library for Python

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 1.3, Package name: py310-aspects-1.3, Maintainer: kamelderouiche

Aspects.py is a lightweight approach to aspect oriented programming (AOP) in
Python. Aspects.py is a lightweight and low-level library for intercepting
function calls. Functions and methods (also in Python standard library and third
party code) can be wrapped so that when they are called, the wrap is invoked
first. Depending on the wrap, the execution of the original function can be
omitted, or the function can be called arbitrarily many times. Wraps are able to
modify the call arguments and the return values of wrapped functions and handle
exceptions. There can be many wraps on the same function. The wraps can be
enabled, disabled and removed in any order In the terminology of aspect-oriented
programming, the library allows applying advices (wraps) to call join points of
methods and functions in around fashion.


Required to run:
[lang/python37]

Required to build:
[pkgtools/cwrappers]

Master sites:

RMD160: 2366ad4fc39dc202c6b88f3d680eab2ae6bbf1e2
Filesize: 23.911 KB

Version history: (Expand)


CVS history: (Expand)


   2014-02-11 21:46:19 by Kamel Derouiche | Files touched by this commit (1)
Log message:
Update Maintainer

   2012-11-23 23:33:55 by othyro | Files touched by this commit (43)
Log message:
Mostly whitespace and blank line fixing. Some files also got minor
formatting corrections as well as other corrections.
   2012-10-06 19:13:24 by Aleksej Saushev | Files touched by this commit (44)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Mark packages that don't or might probably not have staged installation.
   2009-04-12 01:59:11 by Kamel Derouiche | Files touched by this commit (1)
Log message:
New description

   2009-03-22 23:29:47 by Kamel Derouiche | Files touched by this commit (4) | Imported package
Log message:
Import py25-aspects-1.3 as wip/py-aspects.

Aaspects is a lightweight and low-level library for intercepting function
calls. Functions and methods (also in Python standard library and third
party code) can be wrapped so that when they are called, the wrap is invoked
first. Depending on the wrap, the execution of the original function can be
omitted, or the function can be called arbitrarily many times. Wraps are
able to modify the call arguments and the return values of wrapped functions
and handle exceptions. There can be many wraps on the same function. The
wraps can be enabled, disabled and removed in any order. In the terminology
of aspect-oriented programming, the library allows applying advices (wraps)
to call join points of methods and functions in around fashion