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
I've grepped around in the circuitpython master branch source tree, its submodules, and Adafruit_CircuitPython_Bundle and its submodules and I didn't find any further problems. There are at least a few which do the reverse of what is suggested, though, such as ports/esp8266/modules/ntptime.py:
try:
import ustruct as struct
except:
import struct
@tannewt is there somewhere else I should look, or should I go ahead and close this issue up?
In 2.x
struct
is available asustruct
. We need to make sure all drivers included in the bundle will work with 3.x which has renamed it tostruct
.For backwards compatiblity it should be:
The text was updated successfully, but these errors were encountered: