Metadata-Version: 1.0
Name: decolib
Version: 0.0.1
Summary: Various python decorators
Home-page: http://bitbucket.org/zeus/decolib
Author: Pavel Zhukov
Author-email: gelios@gmail.com
License: GPL
Description: 
        Various useful python decorators:
        - retry(tries, delay=3, backoff=2)         Retries a function or method until it complite without exeptions         delay sets the initial delay, and backoff sets how much the delay should         lengthen after each failure. backoff must be greater than 1, or else it         isn't really a backoff. tries must be at least 0, and delay greater than 0
        
        - memoized
        Classic memoization. Function cache results, then return objects from cache for same argumets
        
Keywords: decorators
Platform: UNKNOWN
