summaryrefslogtreecommitdiffstats
path: root/Modules/cStringIO.c
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1997-01-14 17:38:28 (GMT)
committerBarry Warsaw <barry@python.org>1997-01-14 17:38:28 (GMT)
commit61a63e152d568d761e13988376c204dbc3675779 (patch)
treefb35b7dce0aac9009eafb51aead2cc008fb38c3a /Modules/cStringIO.c
parent54dbf02da223b76e90f4630487d5e3fbea939cfb (diff)
downloadcpython-61a63e152d568d761e13988376c204dbc3675779.zip
cpython-61a63e152d568d761e13988376c204dbc3675779.tar.gz
cpython-61a63e152d568d761e13988376c204dbc3675779.tar.bz2
Quieted gcc -Wall by removing unused local variables.
Suppressing my urge to reformat according to Python coding standards! :-)
Diffstat (limited to 'Modules/cStringIO.c')
-rw-r--r--Modules/cStringIO.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c
index f2750cc..72c7a4c 100644
--- a/Modules/cStringIO.c
+++ b/Modules/cStringIO.c
@@ -58,6 +58,12 @@
$Log$
+ Revision 2.3 1997/01/14 17:38:28 bwarsaw
+ Quieted gcc -Wall by removing unused local variables.
+
+ Suppressing my urge to reformat according to Python coding standards!
+ :-)
+
Revision 2.2 1997/01/06 22:57:52 guido
Jim's latest version.
@@ -317,9 +323,7 @@ O_cwrite(ARG(Oobject*, self), ARG(char*, c), ARG(int, l))
ARGDECL(char*, c)
ARGDECL(int, l)
{
- PyObject *s;
- char *b;
- int newl, space_needed;
+ int newl;
newl=self->pos+l;
if(newl > self->buf_size)
@@ -352,8 +356,8 @@ O_write(ARG(Oobject*, self), ARG(PyObject*, args))
ARGDECL(PyObject*, args)
{
PyObject *s;
- char *c, *b;
- int l, newl, space_needed;
+ char *c;
+ int l;
UNLESS(PyArg_Parse(args, "O", &s)) return NULL;
UNLESS(-1 != (l=PyString_Size(s))) return NULL;