Convert completely to new displayio bindings; remove warnings · csamuelson/circuitpython@1876c71 · GitHub
Skip to content

Commit 1876c71

Browse files
committed
Convert completely to new displayio bindings; remove warnings
1 parent 70fe5cd commit 1876c71

3 files changed

Lines changed: 1 addition & 47 deletions

File tree

py/circuitpy_mpconfig.h

Lines changed: 0 additions & 6 deletions

py/objmodule.c

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -67,33 +67,6 @@ static void module_attr_try_delegation(mp_obj_t self_in, qstr attr, mp_obj_t *de
6767
static void module_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) {
6868
mp_obj_module_t *self = MP_OBJ_TO_PTR(self_in);
6969
if (dest[0] == MP_OBJ_NULL) {
70-
// CIRCUITPY-CHANGE
71-
#if CIRCUITPY_9_10_WARNINGS && CIRCUITPY_DISPLAYIO && CIRCUITPY_WARNINGS
72-
if (self == &displayio_module) {
73-
#if CIRCUITPY_BUSDISPLAY
74-
if (attr == MP_QSTR_Display) {
75-
warnings_warn(&mp_type_FutureWarning, MP_ERROR_TEXT("%q moved from %q to %q"), MP_QSTR_Display, MP_QSTR_displayio, MP_QSTR_busdisplay);
76-
warnings_warn(&mp_type_FutureWarning, MP_ERROR_TEXT("%q renamed %q"), MP_QSTR_Display, MP_QSTR_BusDisplay);
77-
}
78-
#endif
79-
#if CIRCUITPY_EPAPERDISPLAY
80-
if (attr == MP_QSTR_EPaperDisplay) {
81-
warnings_warn(&mp_type_FutureWarning, MP_ERROR_TEXT("%q moved from %q to %q"), MP_QSTR_EPaperDisplay, MP_QSTR_displayio, MP_QSTR_epaperdisplay);
82-
}
83-
#endif
84-
#if CIRCUITPY_FOURWIRE
85-
if (attr == MP_QSTR_FourWire) {
86-
warnings_warn(&mp_type_FutureWarning, MP_ERROR_TEXT("%q moved from %q to %q"), MP_QSTR_FourWire, MP_QSTR_displayio, MP_QSTR_fourwire);
87-
}
88-
#endif
89-
#if CIRCUITPY_I2CDISPLAYBUS
90-
if (attr == MP_QSTR_I2CDisplay) {
91-
warnings_warn(&mp_type_FutureWarning, MP_ERROR_TEXT("%q moved from %q to %q"), MP_QSTR_I2CDisplay, MP_QSTR_displayio, MP_QSTR_i2cdisplaybus);
92-
warnings_warn(&mp_type_FutureWarning, MP_ERROR_TEXT("%q renamed %q"), MP_QSTR_I2CDisplay, MP_QSTR_I2CDisplayBus);
93-
}
94-
#endif
95-
}
96-
#endif
9770
// load attribute
9871
mp_map_elem_t *elem = mp_map_lookup(&self->globals->map, MP_OBJ_NEW_QSTR(attr), MP_MAP_LOOKUP);
9972
if (elem != NULL) {

shared-bindings/displayio/__init__.c

Lines changed: 1 addition & 14 deletions

0 commit comments

Comments
 (0)