From: Guido van Rossum Date: Thu, 24 Dec 1992 11:37:21 +0000 (+0000) Subject: setsize has two arguments: width, height. X-Git-Tag: v0.9.8~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f1ceba61a46012ca854f0da43877480d2478009e;p=thirdparty%2FPython%2Fcpython.git setsize has two arguments: width, height. --- diff --git a/Demo/sgi/video/VFile.py b/Demo/sgi/video/VFile.py index 3d2bd8ce8172..daba6a088177 100755 --- a/Demo/sgi/video/VFile.py +++ b/Demo/sgi/video/VFile.py @@ -246,8 +246,8 @@ class VideoParams: # Set the frame width and height (e.g. from gl.getsize()) - def setsize(self, size): - self.width, self.height = size + def setsize(self, width, height): + self.width, self.height = width, height # Retrieve the frame width and height (e.g. for gl.prefsize()) @@ -800,7 +800,7 @@ class BasicVinFile(VideoParams): def setinfo(self, values): raise CallError # Can't change info of input file! - def setsize(self, size): + def setsize(self, width, height): raise CallError # Can't change info of input file! def rewind(self):