summaryrefslogtreecommitdiffstats
path: root/Mac/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-22 18:36:13 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-22 18:36:13 (GMT)
commitb340466af9825c4f3a48576131ef77741771fae9 (patch)
tree680278c0d92ba7f7670d673dc7524f0be5ea8244 /Mac/Python
parentf8de0685c91ab947abc444d43f4a91b5edd2829c (diff)
downloadcpython-b340466af9825c4f3a48576131ef77741771fae9.zip
cpython-b340466af9825c4f3a48576131ef77741771fae9.tar.gz
cpython-b340466af9825c4f3a48576131ef77741771fae9.tar.bz2
cosmetics: copyright, comments
Diffstat (limited to 'Mac/Python')
-rw-r--r--Mac/Python/macglue.c48
1 files changed, 33 insertions, 15 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c
index 7767515..f350f97 100644
--- a/Mac/Python/macglue.c
+++ b/Mac/Python/macglue.c
@@ -1,13 +1,26 @@
-/*
-** macglue - A couple of mac-specific routines often needed.
-**
-** Jack Jansen, CWI, 1994.
-** Some routines by Guido, moved here from macosmodule.c
-** (since they are useable by other modules as well).
-*/
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+/***********************************************************
+Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
+The Netherlands.
+
+ All Rights Reserved
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
+provided that the above copyright notice appear in all copies and that
+both that copyright notice and this permission notice appear in
+supporting documentation, and that the names of Stichting Mathematisch
+Centrum or CWI not be used in advertising or publicity pertaining to
+distribution of the software without specific, written prior permission.
+
+STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
+THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
+FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+******************************************************************/
#include "Python.h"
#include "macglue.h"
@@ -19,7 +32,7 @@
#include <Windows.h>
#include <Desk.h>
-/* We should include Errors.h here, but it has a name conflict
+/* XXX We should include Errors.h here, but it has a name conflict
** with the python errors.h. */
#define fnfErr -43
@@ -117,7 +130,7 @@ PyMac_GetOSType(PyObject *v, ResType *pr)
return 1;
}
-/* Convert a Str255 argument */
+/* Convert a Python string to a Str255 */
int
PyMac_GetStr255(PyObject *v, Str255 pbuf)
{
@@ -167,9 +180,7 @@ PyMac_GetFSSpec(PyObject *v, FSSpec *fs)
return 1;
}
-/*
-** Return a python object that describes an FSSpec
-*/
+/* Return a Python object that describes an FSSpec */
PyObject *
PyMac_BuildFSSpec(FSSpec *fs)
{
@@ -182,3 +193,10 @@ PyMac_BuildOSType(OSType t)
{
return PyString_FromStringAndSize((char *)&t, 4);
}
+
+/* Convert a Str255 to a Python string */
+PyObject *
+PyMac_BuildStr255(Str255 s)
+{
+ return PyString_FromStringAndSize((char *)&s[1], (int)s[0]);
+}