mirror of
https://github.com/python/cpython.git
synced 2026-06-28 03:41:13 +00:00
[3.14] gh-150285: Fix too long docstrings in Argument Clinic code (GH-150338) (GH-150350) (GH-150473)
(cherry picked from commitcf73b17adf) (cherry picked from commit287c98f4cb)
This commit is contained in:
parent
26c5468b5d
commit
49975a511f
71 changed files with 586 additions and 531 deletions
|
|
@ -119,7 +119,6 @@ _opcode_has_const_impl(PyObject *module, int opcode)
|
|||
}
|
||||
|
||||
/*[clinic input]
|
||||
|
||||
_opcode.has_name -> bool
|
||||
|
||||
opcode: int
|
||||
|
|
@ -129,7 +128,7 @@ Return True if the opcode accesses an attribute by name, False otherwise.
|
|||
|
||||
static int
|
||||
_opcode_has_name_impl(PyObject *module, int opcode)
|
||||
/*[clinic end generated code: output=b49a83555c2fa517 input=448aa5e4bcc947ba]*/
|
||||
/*[clinic end generated code: output=b49a83555c2fa517 input=3032469628dd0849]*/
|
||||
{
|
||||
return IS_VALID_OPCODE(opcode) && OPCODE_HAS_NAME(opcode);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue