mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Regenerated with PyDoc_STR() around docstrings.
This commit is contained in:
parent
44b99e0a1f
commit
49931887d7
23 changed files with 2151 additions and 2151 deletions
|
|
@ -759,64 +759,64 @@ static PyObject *AEDesc_AEResolve(AEDescObject *_self, PyObject *_args)
|
|||
|
||||
static PyMethodDef AEDesc_methods[] = {
|
||||
{"AECoerceDesc", (PyCFunction)AEDesc_AECoerceDesc, 1,
|
||||
"(DescType toType) -> (AEDesc result)"},
|
||||
PyDoc_STR("(DescType toType) -> (AEDesc result)")},
|
||||
{"AEDuplicateDesc", (PyCFunction)AEDesc_AEDuplicateDesc, 1,
|
||||
"() -> (AEDesc result)"},
|
||||
PyDoc_STR("() -> (AEDesc result)")},
|
||||
{"AECountItems", (PyCFunction)AEDesc_AECountItems, 1,
|
||||
"() -> (long theCount)"},
|
||||
PyDoc_STR("() -> (long theCount)")},
|
||||
{"AEPutPtr", (PyCFunction)AEDesc_AEPutPtr, 1,
|
||||
"(long index, DescType typeCode, Buffer dataPtr) -> None"},
|
||||
PyDoc_STR("(long index, DescType typeCode, Buffer dataPtr) -> None")},
|
||||
{"AEPutDesc", (PyCFunction)AEDesc_AEPutDesc, 1,
|
||||
"(long index, AEDesc theAEDesc) -> None"},
|
||||
PyDoc_STR("(long index, AEDesc theAEDesc) -> None")},
|
||||
{"AEGetNthPtr", (PyCFunction)AEDesc_AEGetNthPtr, 1,
|
||||
"(long index, DescType desiredType, Buffer dataPtr) -> (AEKeyword theAEKeyword, DescType typeCode, Buffer dataPtr)"},
|
||||
PyDoc_STR("(long index, DescType desiredType, Buffer dataPtr) -> (AEKeyword theAEKeyword, DescType typeCode, Buffer dataPtr)")},
|
||||
{"AEGetNthDesc", (PyCFunction)AEDesc_AEGetNthDesc, 1,
|
||||
"(long index, DescType desiredType) -> (AEKeyword theAEKeyword, AEDesc result)"},
|
||||
PyDoc_STR("(long index, DescType desiredType) -> (AEKeyword theAEKeyword, AEDesc result)")},
|
||||
{"AESizeOfNthItem", (PyCFunction)AEDesc_AESizeOfNthItem, 1,
|
||||
"(long index) -> (DescType typeCode, Size dataSize)"},
|
||||
PyDoc_STR("(long index) -> (DescType typeCode, Size dataSize)")},
|
||||
{"AEDeleteItem", (PyCFunction)AEDesc_AEDeleteItem, 1,
|
||||
"(long index) -> None"},
|
||||
PyDoc_STR("(long index) -> None")},
|
||||
{"AEPutParamPtr", (PyCFunction)AEDesc_AEPutParamPtr, 1,
|
||||
"(AEKeyword theAEKeyword, DescType typeCode, Buffer dataPtr) -> None"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword, DescType typeCode, Buffer dataPtr) -> None")},
|
||||
{"AEPutParamDesc", (PyCFunction)AEDesc_AEPutParamDesc, 1,
|
||||
"(AEKeyword theAEKeyword, AEDesc theAEDesc) -> None"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword, AEDesc theAEDesc) -> None")},
|
||||
{"AEGetParamPtr", (PyCFunction)AEDesc_AEGetParamPtr, 1,
|
||||
"(AEKeyword theAEKeyword, DescType desiredType, Buffer dataPtr) -> (DescType typeCode, Buffer dataPtr)"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword, DescType desiredType, Buffer dataPtr) -> (DescType typeCode, Buffer dataPtr)")},
|
||||
{"AEGetParamDesc", (PyCFunction)AEDesc_AEGetParamDesc, 1,
|
||||
"(AEKeyword theAEKeyword, DescType desiredType) -> (AEDesc result)"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword, DescType desiredType) -> (AEDesc result)")},
|
||||
{"AESizeOfParam", (PyCFunction)AEDesc_AESizeOfParam, 1,
|
||||
"(AEKeyword theAEKeyword) -> (DescType typeCode, Size dataSize)"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword) -> (DescType typeCode, Size dataSize)")},
|
||||
{"AEDeleteParam", (PyCFunction)AEDesc_AEDeleteParam, 1,
|
||||
"(AEKeyword theAEKeyword) -> None"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword) -> None")},
|
||||
{"AEGetAttributePtr", (PyCFunction)AEDesc_AEGetAttributePtr, 1,
|
||||
"(AEKeyword theAEKeyword, DescType desiredType, Buffer dataPtr) -> (DescType typeCode, Buffer dataPtr)"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword, DescType desiredType, Buffer dataPtr) -> (DescType typeCode, Buffer dataPtr)")},
|
||||
{"AEGetAttributeDesc", (PyCFunction)AEDesc_AEGetAttributeDesc, 1,
|
||||
"(AEKeyword theAEKeyword, DescType desiredType) -> (AEDesc result)"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword, DescType desiredType) -> (AEDesc result)")},
|
||||
{"AESizeOfAttribute", (PyCFunction)AEDesc_AESizeOfAttribute, 1,
|
||||
"(AEKeyword theAEKeyword) -> (DescType typeCode, Size dataSize)"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword) -> (DescType typeCode, Size dataSize)")},
|
||||
{"AEPutAttributePtr", (PyCFunction)AEDesc_AEPutAttributePtr, 1,
|
||||
"(AEKeyword theAEKeyword, DescType typeCode, Buffer dataPtr) -> None"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword, DescType typeCode, Buffer dataPtr) -> None")},
|
||||
{"AEPutAttributeDesc", (PyCFunction)AEDesc_AEPutAttributeDesc, 1,
|
||||
"(AEKeyword theAEKeyword, AEDesc theAEDesc) -> None"},
|
||||
PyDoc_STR("(AEKeyword theAEKeyword, AEDesc theAEDesc) -> None")},
|
||||
|
||||
#if TARGET_API_MAC_CARBON
|
||||
{"AEGetDescDataSize", (PyCFunction)AEDesc_AEGetDescDataSize, 1,
|
||||
"() -> (Size _rv)"},
|
||||
PyDoc_STR("() -> (Size _rv)")},
|
||||
#endif
|
||||
{"AESend", (PyCFunction)AEDesc_AESend, 1,
|
||||
"(AESendMode sendMode, AESendPriority sendPriority, long timeOutInTicks) -> (AppleEvent reply)"},
|
||||
PyDoc_STR("(AESendMode sendMode, AESendPriority sendPriority, long timeOutInTicks) -> (AppleEvent reply)")},
|
||||
{"AEResetTimer", (PyCFunction)AEDesc_AEResetTimer, 1,
|
||||
"() -> None"},
|
||||
PyDoc_STR("() -> None")},
|
||||
{"AESuspendTheCurrentEvent", (PyCFunction)AEDesc_AESuspendTheCurrentEvent, 1,
|
||||
"() -> None"},
|
||||
PyDoc_STR("() -> None")},
|
||||
{"AEResumeTheCurrentEvent", (PyCFunction)AEDesc_AEResumeTheCurrentEvent, 1,
|
||||
"(AppleEvent reply, EventHandler dispatcher) -> None"},
|
||||
PyDoc_STR("(AppleEvent reply, EventHandler dispatcher) -> None")},
|
||||
{"AEGetTheCurrentEvent", (PyCFunction)AEDesc_AEGetTheCurrentEvent, 1,
|
||||
"() -> None"},
|
||||
PyDoc_STR("() -> None")},
|
||||
{"AESetTheCurrentEvent", (PyCFunction)AEDesc_AESetTheCurrentEvent, 1,
|
||||
"() -> None"},
|
||||
PyDoc_STR("() -> None")},
|
||||
{"AEResolve", (PyCFunction)AEDesc_AEResolve, 1,
|
||||
"(short callbackFlags) -> (AEDesc theToken)"},
|
||||
PyDoc_STR("(short callbackFlags) -> (AEDesc theToken)")},
|
||||
{NULL, NULL, 0}
|
||||
};
|
||||
|
||||
|
|
@ -1307,44 +1307,44 @@ static PyObject *AE_AECallObjectAccessor(PyObject *_self, PyObject *_args)
|
|||
|
||||
static PyMethodDef AE_methods[] = {
|
||||
{"AECoercePtr", (PyCFunction)AE_AECoercePtr, 1,
|
||||
"(DescType typeCode, Buffer dataPtr, DescType toType) -> (AEDesc result)"},
|
||||
PyDoc_STR("(DescType typeCode, Buffer dataPtr, DescType toType) -> (AEDesc result)")},
|
||||
{"AECreateDesc", (PyCFunction)AE_AECreateDesc, 1,
|
||||
"(DescType typeCode, Buffer dataPtr) -> (AEDesc result)"},
|
||||
PyDoc_STR("(DescType typeCode, Buffer dataPtr) -> (AEDesc result)")},
|
||||
{"AECreateList", (PyCFunction)AE_AECreateList, 1,
|
||||
"(Buffer factoringPtr, Boolean isRecord) -> (AEDescList resultList)"},
|
||||
PyDoc_STR("(Buffer factoringPtr, Boolean isRecord) -> (AEDescList resultList)")},
|
||||
{"AECreateAppleEvent", (PyCFunction)AE_AECreateAppleEvent, 1,
|
||||
"(AEEventClass theAEEventClass, AEEventID theAEEventID, AEAddressDesc target, AEReturnID returnID, AETransactionID transactionID) -> (AppleEvent result)"},
|
||||
PyDoc_STR("(AEEventClass theAEEventClass, AEEventID theAEEventID, AEAddressDesc target, AEReturnID returnID, AETransactionID transactionID) -> (AppleEvent result)")},
|
||||
|
||||
#if TARGET_API_MAC_CARBON
|
||||
{"AEReplaceDescData", (PyCFunction)AE_AEReplaceDescData, 1,
|
||||
"(DescType typeCode, Buffer dataPtr) -> (AEDesc theAEDesc)"},
|
||||
PyDoc_STR("(DescType typeCode, Buffer dataPtr) -> (AEDesc theAEDesc)")},
|
||||
#endif
|
||||
{"AEProcessAppleEvent", (PyCFunction)AE_AEProcessAppleEvent, 1,
|
||||
"(EventRecord theEventRecord) -> None"},
|
||||
PyDoc_STR("(EventRecord theEventRecord) -> None")},
|
||||
{"AEGetInteractionAllowed", (PyCFunction)AE_AEGetInteractionAllowed, 1,
|
||||
"() -> (AEInteractAllowed level)"},
|
||||
PyDoc_STR("() -> (AEInteractAllowed level)")},
|
||||
{"AESetInteractionAllowed", (PyCFunction)AE_AESetInteractionAllowed, 1,
|
||||
"(AEInteractAllowed level) -> None"},
|
||||
PyDoc_STR("(AEInteractAllowed level) -> None")},
|
||||
{"AEInteractWithUser", (PyCFunction)AE_AEInteractWithUser, 1,
|
||||
"(long timeOutInTicks) -> None"},
|
||||
PyDoc_STR("(long timeOutInTicks) -> None")},
|
||||
{"AEInstallEventHandler", (PyCFunction)AE_AEInstallEventHandler, 1,
|
||||
"(AEEventClass theAEEventClass, AEEventID theAEEventID, EventHandler handler) -> None"},
|
||||
PyDoc_STR("(AEEventClass theAEEventClass, AEEventID theAEEventID, EventHandler handler) -> None")},
|
||||
{"AERemoveEventHandler", (PyCFunction)AE_AERemoveEventHandler, 1,
|
||||
"(AEEventClass theAEEventClass, AEEventID theAEEventID) -> None"},
|
||||
PyDoc_STR("(AEEventClass theAEEventClass, AEEventID theAEEventID) -> None")},
|
||||
{"AEGetEventHandler", (PyCFunction)AE_AEGetEventHandler, 1,
|
||||
"(AEEventClass theAEEventClass, AEEventID theAEEventID) -> (EventHandler handler)"},
|
||||
PyDoc_STR("(AEEventClass theAEEventClass, AEEventID theAEEventID) -> (EventHandler handler)")},
|
||||
{"AEInstallSpecialHandler", (PyCFunction)AE_AEInstallSpecialHandler, 1,
|
||||
"(AEKeyword functionClass) -> None"},
|
||||
PyDoc_STR("(AEKeyword functionClass) -> None")},
|
||||
{"AERemoveSpecialHandler", (PyCFunction)AE_AERemoveSpecialHandler, 1,
|
||||
"(AEKeyword functionClass) -> None"},
|
||||
PyDoc_STR("(AEKeyword functionClass) -> None")},
|
||||
{"AEManagerInfo", (PyCFunction)AE_AEManagerInfo, 1,
|
||||
"(AEKeyword keyWord) -> (long result)"},
|
||||
PyDoc_STR("(AEKeyword keyWord) -> (long result)")},
|
||||
{"AEObjectInit", (PyCFunction)AE_AEObjectInit, 1,
|
||||
"() -> None"},
|
||||
PyDoc_STR("() -> None")},
|
||||
{"AEDisposeToken", (PyCFunction)AE_AEDisposeToken, 1,
|
||||
"() -> (AEDesc theToken)"},
|
||||
PyDoc_STR("() -> (AEDesc theToken)")},
|
||||
{"AECallObjectAccessor", (PyCFunction)AE_AECallObjectAccessor, 1,
|
||||
"(DescType desiredClass, AEDesc containerToken, DescType containerClass, DescType keyForm, AEDesc keyData) -> (AEDesc token)"},
|
||||
PyDoc_STR("(DescType desiredClass, AEDesc containerToken, DescType containerClass, DescType keyForm, AEDesc keyData) -> (AEDesc token)")},
|
||||
{NULL, NULL, 0}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue