[Python-checkins] r46379 - in python/branches/sreifschneider-newnewexcept: Doc/tut/tut.tex Include/pyerrors.h

richard.jones python-checkins at python.org
Fri May 26 20:20:17 CEST 2006


Author: richard.jones
Date: Fri May 26 20:20:16 2006
New Revision: 46379

Modified:
   python/branches/sreifschneider-newnewexcept/Doc/tut/tut.tex
   python/branches/sreifschneider-newnewexcept/Include/pyerrors.h
Log:
remove references to OverflowWarning

Modified: python/branches/sreifschneider-newnewexcept/Doc/tut/tut.tex
==============================================================================
--- python/branches/sreifschneider-newnewexcept/Doc/tut/tut.tex	(original)
+++ python/branches/sreifschneider-newnewexcept/Doc/tut/tut.tex	Fri May 26 20:20:16 2006
@@ -2711,7 +2711,7 @@
  'FloatingPointError', 'FutureWarning', 'IOError', 'ImportError',
  'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt',
  'LookupError', 'MemoryError', 'NameError', 'None', 'NotImplemented',
- 'NotImplementedError', 'OSError', 'OverflowError', 'OverflowWarning',
+ 'NotImplementedError', 'OSError', 'OverflowError', 
  'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError',
  'RuntimeWarning', 'StandardError', 'StopIteration', 'SyntaxError',
  'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'True',

Modified: python/branches/sreifschneider-newnewexcept/Include/pyerrors.h
==============================================================================
--- python/branches/sreifschneider-newnewexcept/Include/pyerrors.h	(original)
+++ python/branches/sreifschneider-newnewexcept/Include/pyerrors.h	Fri May 26 20:20:16 2006
@@ -104,8 +104,6 @@
 PyAPI_DATA(PyObject *) PyExc_DeprecationWarning;
 PyAPI_DATA(PyObject *) PyExc_PendingDeprecationWarning;
 PyAPI_DATA(PyObject *) PyExc_SyntaxWarning;
-/* PyExc_OverflowWarning will go away for Python 2.5 */
-PyAPI_DATA(PyObject *) PyExc_OverflowWarning;
 PyAPI_DATA(PyObject *) PyExc_RuntimeWarning;
 PyAPI_DATA(PyObject *) PyExc_FutureWarning;
 PyAPI_DATA(PyObject *) PyExc_ImportWarning;


More information about the Python-checkins mailing list