mirror of
https://github.com/python/cpython.git
synced 2025-09-17 14:16:02 +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
|
||||
MODNAME = '_Launch' # The name of the module
|
||||
OBJECTNAME = 'UNUSED' # The basic name of the objects used here
|
||||
KIND = 'Record' # Usually 'Ptr' or 'Handle'
|
||||
MODNAME = '_Launch' # The name of the module
|
||||
OBJECTNAME = 'UNUSED' # The basic name of the objects used here
|
||||
KIND = 'Record' # Usually 'Ptr' or 'Handle'
|
||||
|
||||
# The following is *usually* unchanged but may still require tuning
|
||||
MODPREFIX = 'Launch' # The prefix for module-wide routines
|
||||
OBJECTTYPE = OBJECTNAME + KIND # The C type used to represent them
|
||||
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
|
||||
MODPREFIX = 'Launch' # The prefix for module-wide routines
|
||||
OBJECTTYPE = OBJECTNAME + KIND # 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 *
|
||||
|
||||
|
@ -41,21 +41,21 @@ PyObject *PyMac_GetOSErrException(void);
|
|||
static int
|
||||
OptCFStringRefObj_Convert(PyObject *v, CFStringRef *spec)
|
||||
{
|
||||
if (v == Py_None) {
|
||||
*spec = NULL;
|
||||
return 1;
|
||||
}
|
||||
return CFStringRefObj_Convert(v, spec);
|
||||
if (v == Py_None) {
|
||||
*spec = NULL;
|
||||
return 1;
|
||||
}
|
||||
return CFStringRefObj_Convert(v, spec);
|
||||
}
|
||||
|
||||
PyObject *
|
||||
OptCFStringRefObj_New(CFStringRef it)
|
||||
{
|
||||
if (it == NULL) {
|
||||
Py_INCREF(Py_None);
|
||||
return Py_None;
|
||||
}
|
||||
return CFStringRefObj_New(it);
|
||||
if (it == NULL) {
|
||||
Py_INCREF(Py_None);
|
||||
return Py_None;
|
||||
}
|
||||
return CFStringRefObj_New(it);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -64,13 +64,13 @@ OptCFStringRefObj_New(CFStringRef it)
|
|||
PyObject *
|
||||
LSItemInfoRecord_New(LSItemInfoRecord *it)
|
||||
{
|
||||
return Py_BuildValue("{s:is:O&s:O&s:O&s:O&s:i}",
|
||||
"flags", it->flags,
|
||||
"filetype", PyMac_BuildOSType, it->filetype,
|
||||
"creator", PyMac_BuildOSType, it->creator,
|
||||
"extension", OptCFStringRefObj_New, it->extension,
|
||||
"iconFileName", OptCFStringRefObj_New, it->iconFileName,
|
||||
"kindID", it->kindID);
|
||||
return Py_BuildValue("{s:is:O&s:O&s:O&s:O&s:i}",
|
||||
"flags", it->flags,
|
||||
"filetype", PyMac_BuildOSType, it->filetype,
|
||||
"creator", PyMac_BuildOSType, it->creator,
|
||||
"extension", OptCFStringRefObj_New, it->extension,
|
||||
"iconFileName", OptCFStringRefObj_New, it->iconFileName,
|
||||
"kindID", it->kindID);
|
||||
}
|
||||
"""
|
||||
|
||||
|
@ -99,4 +99,3 @@ for f in functions: module.add(f)
|
|||
# generate output (open the output file as late as possible)
|
||||
SetOutputFileName(OUTPUTFILE)
|
||||
module.generate()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue