diff options
author | Guido van Rossum <guido@python.org> | 1995-01-02 19:30:30 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-02 19:30:30 (GMT) |
commit | 3bbc62e9c25d4c006cd21d6b1314ccf0ba211382 (patch) | |
tree | 0b1a6d87c3bd250a62235f9df6ed9fffddbbabae /Modules/imageop.c | |
parent | 437a0e60baa6eabc2c853bee7ce1543481db8ca7 (diff) | |
download | cpython-3bbc62e9c25d4c006cd21d6b1314ccf0ba211382.zip cpython-3bbc62e9c25d4c006cd21d6b1314ccf0ba211382.tar.gz cpython-3bbc62e9c25d4c006cd21d6b1314ccf0ba211382.tar.bz2 |
Another bulky set of minor changes.
Note addition of gethostbyaddr() and improved repr() for sockets,
renaming of md5.md5() to md5.new(), and fixing of leaks in threads.
Diffstat (limited to 'Modules/imageop.c')
-rw-r--r-- | Modules/imageop.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Modules/imageop.c b/Modules/imageop.c index 77da52e..d3d14e4 100644 --- a/Modules/imageop.c +++ b/Modules/imageop.c @@ -133,7 +133,7 @@ imageop_tovideo(self, args) { int maxx, maxy, x, y, len; int i; - unsigned char *cp, *ncp, cdata; + unsigned char *cp, *ncp; int width; object *rv; @@ -404,9 +404,8 @@ imageop_mono2grey(self, args) { int v0, v1, x, y, len, nlen; unsigned char *cp, *ncp; - unsigned char ovalue; object *rv; - int i, bit, value; + int i, bit; if ( !getargs(args, "(s#iiii)", &cp, &len, &x, &y, &v0, &v1) ) return 0; @@ -444,7 +443,6 @@ imageop_grey22grey(self, args) { int x, y, len, nlen; unsigned char *cp, *ncp; - unsigned char ovalue; object *rv; int i, pos, value, nvalue; @@ -482,7 +480,6 @@ imageop_grey42grey(self, args) { int x, y, len, nlen; unsigned char *cp, *ncp; - unsigned char ovalue; object *rv; int i, pos, value, nvalue; |