[Python-Dev] PEP282 and the warnings framework
holger krekel
pyth@devel.trillke.net
Thu, 16 May 2002 17:40:48 +0200
Aahz wrote:
> On Thu, May 16, 2002, holger krekel wrote:
> > Kevin Butler wrote:
> >>
> >> If I have a choice between writing:
> >>
> >> log.debug(
> >> "HOME environment variable set to non-existent directory %s",
> >> homedir
> >> )
> >
> > with the mapping in my previous posting you would write
> >
> > log.debug(
> > "HOME environment variable set to non-existent directory " + homedir
> > )
>
> There is no difference between these two.
that was my implicit argument (that you don't loose convenience).
thanks for making it explicit :-)
holger