You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This two bug was found on Python3.2 for RaspberryPi.
COLOR = u'#444'
^
SyntaxError: invalid syntax
Fix: remove the "u" before '#444'
File "server.py", line 123, in run
buf = self.converter.stdout.read1(32768)
AttributeError: '_io.FileIO' object has no attribute 'read1'
Fix: use "stdout.read()" instead of "stdout.read1()"
The text was updated successfully, but these errors were encountered:
This two bug was found on Python3.2 for RaspberryPi.
COLOR = u'#444'
^
SyntaxError: invalid syntax
Fix: remove the "u" before '#444'
File "server.py", line 123, in run
buf = self.converter.stdout.read1(32768)
AttributeError: '_io.FileIO' object has no attribute 'read1'
Fix: use "stdout.read()" instead of "stdout.read1()"
The text was updated successfully, but these errors were encountered: