diff options
author | Fred Drake <fdrake@acm.org> | 1999-12-13 16:55:24 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-12-13 16:55:24 (GMT) |
commit | 71f00fb6df1a74b40a15447f85f0ca4d06cb3145 (patch) | |
tree | 1099e848ac8c6a4c230a2ceecbac71f403e4365e /Modules/posixmodule.c | |
parent | c968092d5cb5f23280fe600c5855b5cd245517ef (diff) | |
download | cpython-71f00fb6df1a74b40a15447f85f0ca4d06cb3145.zip cpython-71f00fb6df1a74b40a15447f85f0ca4d06cb3145.tar.gz cpython-71f00fb6df1a74b40a15447f85f0ca4d06cb3145.tar.bz2 |
Removed debugging prints.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 89d6615..d512ac8 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3416,11 +3416,8 @@ conv_confname(arg, valuep, table, tablesize) int hi = tablesize; 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) hi = mid; @@ -3620,7 +3617,6 @@ posix_confstr(self, args) if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) { int len = confstr(name, buffer, sizeof(buffer)); - printf("confstr(%d) --> %d, '%s'\n", name, len, buffer); errno = 0; if (len == 0) { if (errno != 0) |