0
I Use This!
Moderate Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Apr 01, 2025 — Apr 01, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Ensure inspect.getsource() works for adapters and fix argument specification/signature issues. More... over 12 years ago
Attributes can still be left as NULL in __new__ of C implementation. More... over 12 years ago
Base class tp_traverse/tp_clear must be called explicitly from derived class versions of functions. More... over 12 years ago
Forgot to enable garbage collection features on class type. More... over 12 years ago
Added garbage collection support to C implementation of wrappers/proxy. More... over 12 years ago
Proxy __signature__ attribute introduced in Python 3 to adapter if one is specified. More... over 12 years ago
Add overview and testing instructions to README. More... over 12 years ago
Improvements to ability to bind an alternate function prototype to the wrapper for inspect.getargspec(). More... over 12 years ago
Module context for ObjectProxy differs between pure Python and C implementation. More... over 12 years ago
Reference count not decremented on temporary object. More... over 12 years ago
Add __wrapped__ check for settattr and fix reference counting in C implementation of proxy object. More... over 12 years ago
Incorrect update of __wrapped__ on proxy object for C implementation. More... over 12 years ago
Local variable no longer required. More... over 12 years ago
Incorrect return value for error case. More... over 12 years ago
Typo in name of API function call. More... over 12 years ago
Alias __wrapped__ to _self_wrapped and align it with fixed __wrapped__ behaviour in Python 3.4. More... over 12 years ago
Implement attribute deletion in object proxy. More... over 12 years ago
Implement __repr__ and __str__for object proxy. More... over 12 years ago
Implement sequence and mapping protocols for object proxy. More... over 12 years ago
Corrections to documentation. More... over 12 years ago
Add option to disable validation of user decorator parameters at point decorator is applied to a function. More... over 12 years ago
Use __self__ from bound function as allows us to provide instance as class type for class method and None for static method. More... over 12 years ago
Drop unnecessary temporary variable for argspec args list. More... over 12 years ago
Add Python 3 specific tests for used of keyword only arguments in wrappers. More... over 12 years ago
Replace decorator parameter validation with variant of code from inspect.getcallargs() from Python 3. More... over 12 years ago
Correct type for length variable to avoid compiler warnings. More... over 12 years ago
Allow *args and **kwargs in the additional parameters for the wrapper for the decorator. More... over 12 years ago
Add back underlying support in wrappers for both args and kwargs for wrapper function. More... over 12 years ago
Derive the user decorator parameters from the wrapper itself and don't require defaults. More... over 12 years ago
Fixes to number methods and addition of tests for same. More... over 12 years ago