[Python-checkins] CVS: python/dist/src/Modules posixmodule.c,2.117,2.118

Greg Stein gstein@lyra.org
Mon, 13 Dec 1999 10:21:57 -0800 (PST)


hoo hoo... the new diff's count for something already. I saw that in the
first checkin and was about to reply...

:-)


On Mon, 13 Dec 1999, Fred L. Drake wrote:

> Update of /projects/cvsroot/python/dist/src/Modules
> In directory weyr:/home/fdrake/projects/python/Modules
> 
> Modified Files:
> 	posixmodule.c 
> Log Message:
> 
> Removed debugging prints.
> 
> 
> Index: posixmodule.c
> ===================================================================
> RCS file: /projects/cvsroot/python/dist/src/Modules/posixmodule.c,v
> retrieving revision 2.117
> retrieving revision 2.118
> diff -C2 -r2.117 -r2.118
> *** posixmodule.c	1999/12/13 16:37:25	2.117
> --- posixmodule.c	1999/12/13 16:55:24	2.118
> ***************
> *** 3417,3425 ****
>           int cmp, mid;
>           char *confname = PyString_AS_STRING(arg);
> -         printf("table: %d entries\n", tablesize);
>           while (lo < hi) {
>               mid = (lo + hi) / 2;
> -             printf("%d confname='%s'; other='%s';\n",
> -                    mid, confname, table[mid].name);
>               cmp = strcmp(confname, table[mid].name);
>               if (cmp < 0)
> --- 3417,3422 ----
> ***************
> *** 3621,3625 ****
>           int len = confstr(name, buffer, sizeof(buffer));
>   
> -         printf("confstr(%d) --> %d, '%s'\n", name, len, buffer);
>           errno = 0;
>           if (len == 0) {
> --- 3618,3621 ----
> 
> 
> _______________________________________________
> Python-checkins mailing list
> Python-checkins@python.org
> http://www.python.org/mailman/listinfo/python-checkins
> 

-- 
Greg Stein, http://www.lyra.org/