We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b9b9f0 commit e531c94Copy full SHA for e531c94
stage.py
@@ -262,6 +262,8 @@ def lzw_decode(data, code_size):
262
263
264
class GIF16:
265
+ """Read 16-color GIF files."""
266
+
267
def __init__(self, filename):
268
self.filename = filename
269
@@ -564,6 +566,10 @@ class Stage:
564
566
display connected to the device.
565
567
568
The ``fps`` specifies the maximum frame rate to be enforced.
569
570
+ The ``scale`` specifies an optional scaling up of the display, to use
571
+ 2x2 or 3x3, etc. pixels. If not specified, it is inferred from the display
572
+ size (displays wider than 256 pixels will have scale=2, for example).
573
"""
574
buffer = bytearray(512)
575
0 commit comments