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

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert unrelated spacing changes
  • Loading branch information
mdickinson committed May 29, 2024
commit 8ff4651eb8e4e02b9e12ad8c3c466c6fe63e5df6
1 change: 0 additions & 1 deletion Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,6 @@ are always available. They are listed here in alphabetical order.
.. versionchanged:: 3.14
:func:`int` will no longer delegate to the :meth:`~object.__trunc__` method.
Comment thread
mdickinson marked this conversation as resolved.
Outdated


.. function:: isinstance(object, classinfo)

Return ``True`` if the *object* argument is an instance of the *classinfo*
Expand Down
1 change: 1 addition & 0 deletions Doc/whatsnew/3.14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,4 @@ Deprecated

Removed
-------

1 change: 0 additions & 1 deletion Objects/abstract.c
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,6 @@ PyNumber_Long(PyObject *o)
Py_SETREF(result, _PyLong_Copy((PyLongObject *)result));
return result;
}

if (m && m->nb_index) {
return PyNumber_Index(o);
}
Expand Down