cnamedtuple icon indicating copy to clipboard operation
cnamedtuple copied to clipboard

An implementation of namedtuple written in C for warp speed.

Results 3 cnamedtuple issues
Sort by recently updated
recently updated
newest added

I found a few small differences between this implementation and `collections.namedtuple`: - There's no docstring on the namedtuple class (`Point.__doc__` returns None). - `inspect.signature` doesn't work on cnamedtuple classes, but...

``` ╰─$ ./prof/bench Running with: Python 3.6.2 (default, Jul 17 2017, 13:39:29) [GCC 6.4.0 20170704] type creation from string with 1 field(s): namedtuple('NT', 'a') collections: Traceback (most recent call last):...