mirror of
https://github.com/python/cpython.git
synced 2026-06-06 01:41:04 +00:00
gh-150285: Fix too long docstrings in builtins (GH-150293)
* gh-150285: Fix too long docstrings in builtins * Revert bytes and bytearray class multiline docstrings to make IDLE happy.
This commit is contained in:
parent
9fceb1c0c5
commit
e1e06be119
26 changed files with 613 additions and 553 deletions
|
|
@ -2840,12 +2840,13 @@ code._varname_from_oparg
|
|||
|
||||
(internal-only) Return the local variable name for the given oparg.
|
||||
|
||||
WARNING: this method is for internal use only and may change or go away.
|
||||
WARNING: this method is for internal use only and may change or go
|
||||
away.
|
||||
[clinic start generated code]*/
|
||||
|
||||
static PyObject *
|
||||
code__varname_from_oparg_impl(PyCodeObject *self, int oparg)
|
||||
/*[clinic end generated code: output=1fd1130413184206 input=c5fa3ee9bac7d4ca]*/
|
||||
/*[clinic end generated code: output=1fd1130413184206 input=6ba7d6df0d566463]*/
|
||||
{
|
||||
PyObject *name = PyTuple_GetItem(self->co_localsplusnames, oparg);
|
||||
if (name == NULL) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue