python-aspects 1.3-5 source package in Ubuntu

Changelog

python-aspects (1.3-5) unstable; urgency=low

  * Team upload.
  * Rebuild to add Python 2.7 support
 -- Ubuntu Archive Auto-Sync <email address hidden>   Mon,  09 May 2011 11:54:16 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Oneiric
Original maintainer:
Jan Dittberner
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Oneiric: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
python-aspects_1.3.orig.tar.gz 23.9 KiB c012fadc798c3fa0f43b30193d7c0fddcbc0f003f3b51c80d4519112ee15d3ed
python-aspects_1.3-5.diff.gz 2.4 KiB ff23ea4a3c378f663ce93ddd96365da702748a663f9440e6a2bff47965011574
python-aspects_1.3-5.dsc 1.9 KiB 7895d31dba6f2be80802d009c47da155a4103b40a21a557e710ac6fb3d42cc12

Available diffs

View changes file

Binary packages built by this source

python-aspects: lightweight aspect oriented programming library for Python

 Aspects.py is a lightweight approach to aspect oriented programming
 (AOP) in Python. The aspects.py library provides means to intercept
 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
 arguments and the return value of the original function. In the
 terminology of aspect-oriented programming, the library allows
 applying advices (wraps) to call join points of methods and functions
 in around fashion.