[issue5716] Overzealous deprecation of BaseException.message

2009-12-11 Thread Alan Isaac

Alan Isaac alan.is...@gmail.com added the comment:

FYI a patch has been committed that should fix this. For discussion see
http://bugs.python.org/issue6844

--
nosy: +aisaac

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5716
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5716] Overzealous deprecation of BaseException.message

2009-12-11 Thread Ezio Melotti

Ezio Melotti ezio.melo...@gmail.com added the comment:

Closing this as a duplicate of #6844.

--
nosy: +ezio.melotti
resolution:  - duplicate
stage:  - committed/rejected
status: open - closed
superseder:  - BaseException DeprecationError raises inappropriately

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5716
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5716] Overzealous deprecation of BaseException.message

2009-05-12 Thread Francis Devereux

Changes by Francis Devereux python@devrx.org:


--
nosy: +frankoid

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5716
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5716] Overzealous deprecation of BaseException.message

2009-04-07 Thread Tres Seaver

New submission from Tres Seaver tsea...@agendaless.com:

I'm working on cleaning up deprecations for Zope and related
packages under Python 2.6.  The irony here is that I'm receiving
deprecation warnings for custom exception classes  which had a 'message'
attribute long before the abortive attempt to add them to the
BaseException type, which hardly seems reasonable.

For instance, docutils.parsers.rst defines a DirectiveError which takes
two arguments, 'level' and 'message', and therefore gets hit with the
deprecation (even though it never used the new signature).  Likewise,
ZODB.POSException defines a ConflictError type which takes 'message' as
one of several arguments, all optional, and has since at least 2002.

I don't think either of these classes should be subject to a deprecation
warning for a feature they never used or depended on.

--
components: Library (Lib)
messages: 85695
nosy: tseaver
severity: normal
status: open
title: Overzealous deprecation of BaseException.message
versions: Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5716
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5716] Overzealous deprecation of BaseException.message

2009-04-07 Thread Steven Bethard

Steven Bethard steven.beth...@gmail.com added the comment:

I've run into exactly the same thing. The argparse module's
ArgumentError had a message attribute back in Python 2.4, and in
Python 2.6 I get the same warnings Tres is getting.

--
nosy: +bethard

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5716
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue5716] Overzealous deprecation of BaseException.message

2009-04-07 Thread Nick Coghlan

Changes by Nick Coghlan ncogh...@gmail.com:


--
nosy: +ncoghlan

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue5716
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com