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 068e097 commit d6d08f4Copy full SHA for d6d08f4
README.md
@@ -1543,7 +1543,7 @@ pixels = [255 * i/size for i in range(size)]
1543
1544
img = Image.new('L', (width, height), 'white')
1545
img.putdata(pixels)
1546
-img.save('out.png')
+img.save('test.png')
1547
```
1548
1549
### Modes
@@ -1560,7 +1560,7 @@ Audio
1560
```python
1561
import wave, struct
1562
samples = [struct.pack('<h', int(a * 30000)) for a in <list>]
1563
-wf = wave.open('out.wav', 'wb')
+wf = wave.open('test.wav', 'wb')
1564
wf.setnchannels(1)
1565
wf.setsampwidth(2)
1566
wf.setframerate(44100)
0 commit comments