On 3/21/07, brett.cannon <[email protected]> wrote: > Author: brett.cannon > Date: Wed Mar 21 23:26:20 2007 > New Revision: 54510 > > Modified: > python/branches/p3yk/Lib/ConfigParser.py > python/branches/p3yk/Lib/test/test_file.py > Log: > When removing indexing/slicing on exceptions some places were changed > inappropriately from ``e[0]`` to ``e.message`` instead of ``e.args[0]``. The > reason it needs to be the last option is the dichotomy of 'message' and > 'args': > 'message' can be the empty string but args[0] can have a value if more than > one > argument was passed.
So e.args is going to stick around in 3.0? Collin Winter _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
