This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vinay.sajip
Recipients lyapun, nikicat, vinay.sajip
Date 2012-11-12.16:24:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352737446.04.0.991724633413.issue16391@psf.upfronthosting.co.za>
In-reply-to
Content
I don't understand what you mean. For example, defining

def my_handler(*args, **kwargs):
    terminator = kwargs.pop('terminator', '!\n')
    h = logging.StreamHandler(*args, **kwargs)
    h.terminator = terminator
    return h

you can use with a definition of the handler such as

    'console': {
        '()': 'ext://__main__.my_handler',
        'stream': 'ext://sys.stdout',
        'terminator': '!\n',
    }

or similar. And you can also do something this with your own subclass, instead of a function as per my example.

ISTM that using subclasses is the right way to approach this problem; otherwise why would one *ever* use subclasses? I use them when the base class doesn't do exactly what I want, but offers extension points to change its behaviour via subclassing.
History
Date User Action Args
2012-11-12 16:24:06vinay.sajipsetrecipients: + vinay.sajip, lyapun, nikicat
2012-11-12 16:24:06vinay.sajipsetmessageid: <1352737446.04.0.991724633413.issue16391@psf.upfronthosting.co.za>
2012-11-12 16:24:06vinay.sajiplinkissue16391 messages
2012-11-12 16:24:05vinay.sajipcreate