Module v.c.e.structlike

Part of vmc.contrib.epsilon

No module docstring
Class StructBehavior Undocumented
Function record Are you tired of typing class declarations that look like this?
def record(*a, **kw):
Are you tired of typing class declarations that look like this?

    class StuffInfo:
        def __init__(self, a=None, b=None, c=None, d=None, e=None,
                     f=None, g=None, h=None, i=None, j=None):
            self.a = a
            self.b = b
            self.c = c
            self.d = d
            # ...

Epsilon can help!  That's right - for a limited time only, this function
returns a class which provides a shortcut.  The above can be simplified
to::

    StuffInfo = record(a=None, b=None, c=None, d=None, e=None,
                       f=None, g=None, h=None, i=None, j=None)

if the arguments are required, rather than having defaults, it could be
even shorter:

    StuffInfo = record('a b c d e f g h i j')

Put more formally: C{record} optionally takes one positional argument, a
L{str} representing attribute names as whitespace-separated identifiers; it
also takes an arbitrary number of keyword arguments, which map attribute
names to their default values.  If no positional argument is provided, the
names of attributes will be inferred from the names of the defaults
instead.
API Documentation for vodafone-mobile-connect-card-driver-for-linux, generated by pydoctor at 2008-01-10 13:06:31.