Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 866c74e

Browse files
committed
Merged revisions 85193 via svnmerge from
svn+ssh://[email protected]/python/branches/py3k ........ r85193 | benjamin.peterson | 2010-10-02 21:13:39 -0500 (Sat, 02 Oct 2010) | 1 line typo ........
1 parent 0ad44fa commit 866c74e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Objects/typeobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,8 @@ static PyObject *
321321
type_abstractmethods(PyTypeObject *type, void *context)
322322
{
323323
PyObject *mod = NULL;
324-
/* type its self has an __abstractmethods__ descriptor (this). Don't
325-
return that. */
324+
/* type itself has an __abstractmethods__ descriptor (this). Don't return
325+
that. */
326326
if (type != &PyType_Type)
327327
mod = PyDict_GetItemString(type->tp_dict, "__abstractmethods__");
328328
if (!mod) {

0 commit comments

Comments
 (0)