Skip to content

zmsmith/interceptor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

interceptor

functools missing method

    >>> def add(x, y):
    ...   return x + y
    ...
    >>> intercepted = Interceptor(add, 1, 2)
    >>> intercepted['x']
    1
    >>> intercepted['y']
    2
    >>> intercepted['y'] = 3
    >>> intercepted()
    4

About

functools missing method

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages