This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Kill StandardError
Type: Stage:
Components: Library (Lib) Versions: Python 3.0
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: collinwinter Nosy List: collinwinter, nnorwitz
Priority: normal Keywords: patch

Created on 2007-06-12 04:50 by collinwinter, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
kill_standard_error.patch collinwinter, 2007-06-12 04:50 Against r55923
Messages (3)
msg52756 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-06-12 04:50
Per PEP 3100, remove StandardError from the exception hierarchy. Neal, can you give this a quick look?
msg52757 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2007-06-12 06:14
I only saw 2 things.  Otherwise, lgtm.

There are two duplicated lines for Exception:

     PRE_INIT(Exception)
-    PRE_INIT(StandardError)
+    PRE_INIT(Exception)

\versionchanged (or added) shouldn't have a period at the end of the sentence.  It will be added automatically.
msg52758 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-06-12 21:07
Checked in as r55939.
History
Date User Action Args
2022-04-11 14:56:24adminsetgithub: 45084
2008-01-06 22:29:46adminsetkeywords: - py3k
versions: + Python 3.0
2007-06-12 04:50:58collinwintercreate