summaryrefslogtreecommitdiffstats
path: root/Modules/structmodule.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-06-11 16:57:33 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-06-11 16:57:33 (GMT)
commit2d4e077f234023ba2fbece561a3cde91bfed1ea1 (patch)
treefecd27f3bf88ecd052dee1140ac55bc1d10fc40f /Modules/structmodule.c
parent3023f78819a9b03a5fda357cd19abad997339117 (diff)
downloadcpython-2d4e077f234023ba2fbece561a3cde91bfed1ea1.zip
cpython-2d4e077f234023ba2fbece561a3cde91bfed1ea1.tar.gz
cpython-2d4e077f234023ba2fbece561a3cde91bfed1ea1.tar.bz2
Trimmed trailing whitespace.
Diffstat (limited to 'Modules/structmodule.c')
-rw-r--r--Modules/structmodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/structmodule.c b/Modules/structmodule.c
index c3e3f68..9b79978 100644
--- a/Modules/structmodule.c
+++ b/Modules/structmodule.c
@@ -46,7 +46,7 @@ static PyObject *StructError;
#ifdef __MWERKS__
/*
** XXXX We have a problem here. There are no unique alignment rules
-** on the PowerPC mac.
+** on the PowerPC mac.
*/
#ifdef __powerc
#pragma options align=mac68k
@@ -1112,7 +1112,7 @@ calcsize(const char *fmt, const formatdef *f)
}
else
num = 1;
-
+
e = getentry(c, f);
if (e == NULL)
return -1;
@@ -1172,7 +1172,7 @@ struct_pack(PyObject *self, PyObject *args)
if (args == NULL || !PyTuple_Check(args) ||
(n = PyTuple_Size(args)) < 1)
{
- PyErr_SetString(PyExc_TypeError,
+ PyErr_SetString(PyExc_TypeError,
"struct.pack requires at least one argument");
return NULL;
}