irkerd: Convert to Python 3's "except x as y" syntax
authorW. Trevor King <wking@tremily.us>
Fri, 7 Mar 2014 04:21:16 +0000 (20:21 -0800)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 11 Mar 2014 04:47:59 +0000 (00:47 -0400)
commit893598d266c5be0ae6af82fc85afab5e7af06ef8
tree22c2b3edfda79ea092ed8f9401644c9f9e8571a4
parent602989fdf67eb380add1087966a905b2f4294ad4
irkerd: Convert to Python 3's "except x as y" syntax

Support for this was added in Python 2.6 and 3.0.  We can't have
Python 3 compatibility without removing the old "except x, y" syntax,
and I think 3.x support is more imporant than 2.5 support.  In any
case, the existing irkerd has been using the new syntax since 3cc8751
(Truncate messages that are longer than 512 bytes and catch any
exceptions irclib throws about rejected messages, 2013-01-21), so this
commit is not a *new* break with 2.5 support.
irkerd