diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2011-12-12 18:54:29 +0100 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2011-12-12 18:54:29 +0100 |
commit | b15cf649f348f5af9bd8f38405377c5be866a6d8 (patch) | |
tree | 115ed0dae2541ea5dc8a6b52a37326174c2153b4 /Python/errors.c | |
parent | c5d84603efd976bf6f060091e397213a92be72d4 (diff) | |
download | cpython-b15cf649f348f5af9bd8f38405377c5be866a6d8.tar.gz |
Issue #13575: there is only one class type.
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c index cd0f68dff4..36b8c545ac 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -665,7 +665,7 @@ PyErr_NewException(const char *name, PyObject *base, PyObject *dict) if (bases == NULL) goto failure; } - /* Create a real new-style class. */ + /* Create a real class. */ result = PyObject_CallFunction((PyObject *)&PyType_Type, "sOO", dot+1, bases, dict); failure: |