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

Fred L. Drake fdrake@weyr.cnri.reston.va.us
Mon, 13 Dec 1999 11:55:27 -0500 (EST)


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 ----