mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Whitespace normalization, via reindent.py.
This commit is contained in:
parent
e6ddc8b20b
commit
182b5aca27
453 changed files with 31318 additions and 31452 deletions
|
@ -6,16 +6,16 @@
|
|||
import string
|
||||
|
||||
# Declarations that change for each manager
|
||||
MACHEADERFILE = 'Drag.h' # The Apple header file
|
||||
MODNAME = '_Drag' # The name of the module
|
||||
OBJECTNAME = 'DragObj' # The basic name of the objects used here
|
||||
MACHEADERFILE = 'Drag.h' # The Apple header file
|
||||
MODNAME = '_Drag' # The name of the module
|
||||
OBJECTNAME = 'DragObj' # The basic name of the objects used here
|
||||
|
||||
# The following is *usually* unchanged but may still require tuning
|
||||
MODPREFIX = 'Drag' # The prefix for module-wide routines
|
||||
OBJECTTYPE = 'DragRef' # The C type used to represent them
|
||||
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
|
||||
MODPREFIX = 'Drag' # The prefix for module-wide routines
|
||||
OBJECTTYPE = 'DragRef' # The C type used to represent them
|
||||
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
|
||||
INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
|
||||
OUTPUTFILE = MODNAME + "module.c" # The file generated by this program
|
||||
OUTPUTFILE = MODNAME + "module.c" # The file generated by this program
|
||||
|
||||
from macsupport import *
|
||||
|
||||
|
@ -69,81 +69,81 @@ static pascal OSErr
|
|||
dragglue_TrackingHandler(DragTrackingMessage theMessage, WindowPtr theWindow,
|
||||
void *handlerRefCon, DragReference theDrag)
|
||||
{
|
||||
PyObject *args, *rv;
|
||||
int i;
|
||||
|
||||
args = Py_BuildValue("hO&O&", theMessage, DragObj_New, theDrag, WinObj_WhichWindow, theWindow);
|
||||
if ( args == NULL )
|
||||
return -1;
|
||||
rv = PyEval_CallObject((PyObject *)handlerRefCon, args);
|
||||
Py_DECREF(args);
|
||||
if ( rv == NULL ) {
|
||||
PySys_WriteStderr("Drag: Exception in TrackingHandler\\n");
|
||||
PyErr_Print();
|
||||
return -1;
|
||||
}
|
||||
i = -1;
|
||||
if ( rv == Py_None )
|
||||
i = 0;
|
||||
else
|
||||
PyArg_Parse(rv, "l", &i);
|
||||
Py_DECREF(rv);
|
||||
return i;
|
||||
PyObject *args, *rv;
|
||||
int i;
|
||||
|
||||
args = Py_BuildValue("hO&O&", theMessage, DragObj_New, theDrag, WinObj_WhichWindow, theWindow);
|
||||
if ( args == NULL )
|
||||
return -1;
|
||||
rv = PyEval_CallObject((PyObject *)handlerRefCon, args);
|
||||
Py_DECREF(args);
|
||||
if ( rv == NULL ) {
|
||||
PySys_WriteStderr("Drag: Exception in TrackingHandler\\n");
|
||||
PyErr_Print();
|
||||
return -1;
|
||||
}
|
||||
i = -1;
|
||||
if ( rv == Py_None )
|
||||
i = 0;
|
||||
else
|
||||
PyArg_Parse(rv, "l", &i);
|
||||
Py_DECREF(rv);
|
||||
return i;
|
||||
}
|
||||
|
||||
static pascal OSErr
|
||||
dragglue_ReceiveHandler(WindowPtr theWindow, void *handlerRefCon,
|
||||
DragReference theDrag)
|
||||
{
|
||||
PyObject *args, *rv;
|
||||
int i;
|
||||
|
||||
args = Py_BuildValue("O&O&", DragObj_New, theDrag, WinObj_WhichWindow, theWindow);
|
||||
if ( args == NULL )
|
||||
return -1;
|
||||
rv = PyEval_CallObject((PyObject *)handlerRefCon, args);
|
||||
Py_DECREF(args);
|
||||
if ( rv == NULL ) {
|
||||
PySys_WriteStderr("Drag: Exception in ReceiveHandler\\n");
|
||||
PyErr_Print();
|
||||
return -1;
|
||||
}
|
||||
i = -1;
|
||||
if ( rv == Py_None )
|
||||
i = 0;
|
||||
else
|
||||
PyArg_Parse(rv, "l", &i);
|
||||
Py_DECREF(rv);
|
||||
return i;
|
||||
PyObject *args, *rv;
|
||||
int i;
|
||||
|
||||
args = Py_BuildValue("O&O&", DragObj_New, theDrag, WinObj_WhichWindow, theWindow);
|
||||
if ( args == NULL )
|
||||
return -1;
|
||||
rv = PyEval_CallObject((PyObject *)handlerRefCon, args);
|
||||
Py_DECREF(args);
|
||||
if ( rv == NULL ) {
|
||||
PySys_WriteStderr("Drag: Exception in ReceiveHandler\\n");
|
||||
PyErr_Print();
|
||||
return -1;
|
||||
}
|
||||
i = -1;
|
||||
if ( rv == Py_None )
|
||||
i = 0;
|
||||
else
|
||||
PyArg_Parse(rv, "l", &i);
|
||||
Py_DECREF(rv);
|
||||
return i;
|
||||
}
|
||||
|
||||
static pascal OSErr
|
||||
dragglue_SendData(FlavorType theType, void *dragSendRefCon,
|
||||
ItemReference theItem, DragReference theDrag)
|
||||
{
|
||||
DragObjObject *self = (DragObjObject *)dragSendRefCon;
|
||||
PyObject *args, *rv;
|
||||
int i;
|
||||
|
||||
if ( self->sendproc == NULL )
|
||||
return -1;
|
||||
args = Py_BuildValue("O&l", PyMac_BuildOSType, theType, theItem);
|
||||
if ( args == NULL )
|
||||
return -1;
|
||||
rv = PyEval_CallObject(self->sendproc, args);
|
||||
Py_DECREF(args);
|
||||
if ( rv == NULL ) {
|
||||
PySys_WriteStderr("Drag: Exception in SendDataHandler\\n");
|
||||
PyErr_Print();
|
||||
return -1;
|
||||
}
|
||||
i = -1;
|
||||
if ( rv == Py_None )
|
||||
i = 0;
|
||||
else
|
||||
PyArg_Parse(rv, "l", &i);
|
||||
Py_DECREF(rv);
|
||||
return i;
|
||||
DragObjObject *self = (DragObjObject *)dragSendRefCon;
|
||||
PyObject *args, *rv;
|
||||
int i;
|
||||
|
||||
if ( self->sendproc == NULL )
|
||||
return -1;
|
||||
args = Py_BuildValue("O&l", PyMac_BuildOSType, theType, theItem);
|
||||
if ( args == NULL )
|
||||
return -1;
|
||||
rv = PyEval_CallObject(self->sendproc, args);
|
||||
Py_DECREF(args);
|
||||
if ( rv == NULL ) {
|
||||
PySys_WriteStderr("Drag: Exception in SendDataHandler\\n");
|
||||
PyErr_Print();
|
||||
return -1;
|
||||
}
|
||||
i = -1;
|
||||
if ( rv == Py_None )
|
||||
i = 0;
|
||||
else
|
||||
PyArg_Parse(rv, "l", &i);
|
||||
Py_DECREF(rv);
|
||||
return i;
|
||||
}
|
||||
|
||||
#if 0
|
||||
|
@ -165,8 +165,8 @@ dragglue_Drawing(xxxx
|
|||
"""
|
||||
|
||||
initstuff = initstuff + """
|
||||
PyMac_INIT_TOOLBOX_OBJECT_NEW(DragRef, DragObj_New);
|
||||
PyMac_INIT_TOOLBOX_OBJECT_CONVERT(DragRef, DragObj_Convert);
|
||||
PyMac_INIT_TOOLBOX_OBJECT_NEW(DragRef, DragObj_New);
|
||||
PyMac_INIT_TOOLBOX_OBJECT_CONVERT(DragRef, DragObj_Convert);
|
||||
"""
|
||||
|
||||
variablestuff = """
|
||||
|
@ -177,33 +177,33 @@ dragglue_SendDataUPP = NewDragSendDataUPP(dragglue_SendData);
|
|||
dragglue_InputUPP = NewDragInputUPP(dragglue_Input);
|
||||
dragglue_DrawingUPP = NewDragDrawingUPP(dragglue_Drawing);
|
||||
#endif
|
||||
"""
|
||||
"""
|
||||
|
||||
class MyObjectDefinition(PEP253Mixin, GlobalObjectDefinition):
|
||||
def outputCheckNewArg(self):
|
||||
Output("""if (itself == NULL) {
|
||||
PyErr_SetString(Drag_Error,"Cannot create null Drag");
|
||||
return NULL;
|
||||
}""")
|
||||
def outputFreeIt(self, itselfname):
|
||||
## Output("DisposeDrag(%s);", itselfname)
|
||||
Output("Py_XDECREF(self->sendproc);")
|
||||
## Output("Py_XDECREF(self->inputproc);")
|
||||
## Output("Py_XDECREF(self->drawingproc);")
|
||||
|
||||
def outputStructMembers(self):
|
||||
GlobalObjectDefinition.outputStructMembers(self)
|
||||
Output("PyObject *sendproc;")
|
||||
## Output("PyObject *inputproc;")
|
||||
## Output("PyObject *drawingproc;")
|
||||
|
||||
def outputInitStructMembers(self):
|
||||
GlobalObjectDefinition.outputInitStructMembers(self)
|
||||
Output("it->sendproc = NULL;")
|
||||
## Output("it->inputproc = NULL;")
|
||||
## Output("it->drawingproc = NULL;")
|
||||
|
||||
|
||||
def outputCheckNewArg(self):
|
||||
Output("""if (itself == NULL) {
|
||||
PyErr_SetString(Drag_Error,"Cannot create null Drag");
|
||||
return NULL;
|
||||
}""")
|
||||
def outputFreeIt(self, itselfname):
|
||||
## Output("DisposeDrag(%s);", itselfname)
|
||||
Output("Py_XDECREF(self->sendproc);")
|
||||
## Output("Py_XDECREF(self->inputproc);")
|
||||
## Output("Py_XDECREF(self->drawingproc);")
|
||||
|
||||
def outputStructMembers(self):
|
||||
GlobalObjectDefinition.outputStructMembers(self)
|
||||
Output("PyObject *sendproc;")
|
||||
## Output("PyObject *inputproc;")
|
||||
## Output("PyObject *drawingproc;")
|
||||
|
||||
def outputInitStructMembers(self):
|
||||
GlobalObjectDefinition.outputInitStructMembers(self)
|
||||
Output("it->sendproc = NULL;")
|
||||
## Output("it->inputproc = NULL;")
|
||||
## Output("it->drawingproc = NULL;")
|
||||
|
||||
|
||||
# Create the generator groups and link them
|
||||
module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff, variablestuff)
|
||||
object = MyObjectDefinition(OBJECTNAME, OBJECTPREFIX, OBJECTTYPE)
|
||||
|
@ -228,15 +228,15 @@ installtracking_body = """
|
|||
PyObject *callback;
|
||||
WindowPtr theWindow = NULL;
|
||||
OSErr _err;
|
||||
|
||||
|
||||
if ( !PyArg_ParseTuple(_args, "O|O&", &callback, WinObj_Convert, &theWindow) )
|
||||
return NULL;
|
||||
Py_INCREF(callback); /* Cannot decref later, too bad */
|
||||
return NULL;
|
||||
Py_INCREF(callback); /* Cannot decref later, too bad */
|
||||
_err = InstallTrackingHandler(dragglue_TrackingHandlerUPP, theWindow, (void *)callback);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
"""
|
||||
installtracking = ManualGenerator("InstallTrackingHandler", installtracking_body)
|
||||
module.add(installtracking)
|
||||
|
@ -245,15 +245,15 @@ installreceive_body = """
|
|||
PyObject *callback;
|
||||
WindowPtr theWindow = NULL;
|
||||
OSErr _err;
|
||||
|
||||
|
||||
if ( !PyArg_ParseTuple(_args, "O|O&", &callback, WinObj_Convert, &theWindow) )
|
||||
return NULL;
|
||||
Py_INCREF(callback); /* Cannot decref later, too bad */
|
||||
return NULL;
|
||||
Py_INCREF(callback); /* Cannot decref later, too bad */
|
||||
_err = InstallReceiveHandler(dragglue_ReceiveHandlerUPP, theWindow, (void *)callback);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
"""
|
||||
installreceive = ManualGenerator("InstallReceiveHandler", installreceive_body)
|
||||
module.add(installreceive)
|
||||
|
@ -261,14 +261,14 @@ module.add(installreceive)
|
|||
removetracking_body = """
|
||||
WindowPtr theWindow = NULL;
|
||||
OSErr _err;
|
||||
|
||||
|
||||
if ( !PyArg_ParseTuple(_args, "|O&", WinObj_Convert, &theWindow) )
|
||||
return NULL;
|
||||
return NULL;
|
||||
_err = RemoveTrackingHandler(dragglue_TrackingHandlerUPP, theWindow);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
"""
|
||||
removetracking = ManualGenerator("RemoveTrackingHandler", removetracking_body)
|
||||
module.add(removetracking)
|
||||
|
@ -276,14 +276,14 @@ module.add(removetracking)
|
|||
removereceive_body = """
|
||||
WindowPtr theWindow = NULL;
|
||||
OSErr _err;
|
||||
|
||||
|
||||
if ( !PyArg_ParseTuple(_args, "|O&", WinObj_Convert, &theWindow) )
|
||||
return NULL;
|
||||
return NULL;
|
||||
_err = RemoveReceiveHandler(dragglue_ReceiveHandlerUPP, theWindow);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
"""
|
||||
removereceive = ManualGenerator("RemoveReceiveHandler", removereceive_body)
|
||||
module.add(removereceive)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue