diff --git a/Scripts/pildriver.py b/Scripts/pildriver.py index 32989ccdf..69c90ad4b 100644 --- a/Scripts/pildriver.py +++ b/Scripts/pildriver.py @@ -152,7 +152,8 @@ class PILDriver(object): self.push(Image.composite(image1, image2, mask)) def do_merge(self): - """usage: merge [ [ []]] + """usage: merge + [ [ []]] Merge top-of stack images in a way described by the mode. """ @@ -181,7 +182,8 @@ class PILDriver(object): self.dup() def do_crop(self): - """usage: crop + """usage: crop + Crop and push a rectangular region from the current image. """ @@ -243,7 +245,8 @@ class PILDriver(object): self.push(image.offset(xoff, yoff)) def do_paste(self): - """usage: paste + """usage: paste + Paste figure image into ground with upper left at given offsets. """ diff --git a/Tests/check_jpeg_leaks.py b/Tests/check_jpeg_leaks.py index 1d05cd975..7df2dfcc4 100644 --- a/Tests/check_jpeg_leaks.py +++ b/Tests/check_jpeg_leaks.py @@ -6,7 +6,8 @@ iterations = 5000 """ -When run on a system without the jpeg leak fixes, the valgrind runs look like this. +When run on a system without the jpeg leak fixes, +the valgrind runs look like this. NOSE_PROCESSES=0 NOSE_TIMEOUT=600 valgrind --tool=massif \ python test-installed.py -s -v Tests/check_jpeg_leaks.py