mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Adapted to Universal Headers 3.3.2. More to follow.
This commit is contained in:
parent
c6c2838403
commit
f7d5aa61d3
28 changed files with 3445 additions and 957 deletions
|
@ -831,7 +831,7 @@ void initCm()
|
|||
Cm_Error = PyMac_GetOSErrException();
|
||||
if (Cm_Error == NULL ||
|
||||
PyDict_SetItemString(d, "Error", Cm_Error) != 0)
|
||||
Py_FatalError("can't initialize Cm.Error");
|
||||
return;
|
||||
ComponentInstance_Type.ob_type = &PyType_Type;
|
||||
Py_INCREF(&ComponentInstance_Type);
|
||||
if (PyDict_SetItemString(d, "ComponentInstanceType", (PyObject *)&ComponentInstance_Type) != 0)
|
||||
|
|
|
@ -56,6 +56,8 @@ class MyScanner(Scanner):
|
|||
"CallComponentClose",
|
||||
"CallComponentOpen",
|
||||
"OpenAComponent",
|
||||
"GetComponentPublicResource", # Missing in CW Pro 6
|
||||
"CallComponentGetPublicResource", # Missing in CW Pro 6
|
||||
]
|
||||
|
||||
def makegreylist(self):
|
||||
|
@ -77,6 +79,8 @@ class MyScanner(Scanner):
|
|||
|
||||
"ComponentRoutineUPP",
|
||||
"ComponentMPWorkFunctionUPP",
|
||||
"ComponentFunctionUPP",
|
||||
"GetMissingComponentResourceUPP",
|
||||
]
|
||||
|
||||
def makerepairinstructions(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue