Skip to content

Commit b6e9536

Browse files
authored
Merge pull request #8560 from dhalbert/type-flag-has-special-accessors
correct MP_TYPE_FLAG_NONE to MP_TYPE_FLAG_HAS_SPECIAL_ACCESSORS
2 parents ebf19bd + 6162011 commit b6e9536

File tree

15 files changed

+2
-15
lines changed

15 files changed

+2
-15
lines changed

ports/espressif/bindings/espulp/ULPAlarm.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#include "bindings/espulp/ULPAlarm.h"
2828

2929
#include "py/runtime.h"
30-
#include "py/objproperty.h"
3130

3231
//| class ULPAlarm:
3332
//| """Trigger an alarm when the ULP requests wake-up."""

shared-bindings/alarm/SleepMemory.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
*/
2727

2828
#include "py/binary.h"
29-
#include "py/objproperty.h"
3029
#include "py/runtime.h"
3130
#include "py/runtime0.h"
3231

shared-bindings/analogbufio/BufferedIn.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
#include "py/binary.h"
3232
#include "py/mphal.h"
3333
#include "py/nlr.h"
34-
#include "py/objproperty.h"
3534
#include "py/runtime.h"
3635
#include "shared-bindings/microcontroller/Pin.h"
3736
#include "shared-bindings/analogbufio/BufferedIn.h"

shared-bindings/camera/Camera.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
* THE SOFTWARE.
2525
*/
2626

27-
#include "py/objproperty.h"
2827
#include "py/runtime.h"
2928

3029
#include "shared-bindings/camera/Camera.h"

shared-bindings/i2cdisplaybus/I2CDisplayBus.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131

3232
#include "shared/runtime/context_manager_helpers.h"
3333
#include "py/binary.h"
34-
#include "py/objproperty.h"
3534
#include "py/runtime.h"
3635
#include "shared-bindings/microcontroller/Pin.h"
3736
#include "shared-bindings/busio/I2C.h"

shared-bindings/i2ctarget/I2CTarget.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ STATIC MP_DEFINE_CONST_DICT(i2ctarget_i2c_target_request_locals_dict, i2ctarget_
420420
MP_DEFINE_CONST_OBJ_TYPE(
421421
i2ctarget_i2c_target_request_type,
422422
MP_QSTR_I2CTargetRequest,
423-
MP_TYPE_FLAG_NONE,
423+
MP_TYPE_FLAG_HAS_SPECIAL_ACCESSORS,
424424
make_new, i2ctarget_i2c_target_request_make_new,
425425
locals_dict, &i2ctarget_i2c_target_request_locals_dict
426426
);

shared-bindings/imagecapture/ParallelImageCapture.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
*/
2626

2727
#include "py/obj.h"
28-
#include "py/objproperty.h"
2928
#include "py/runtime.h"
3029

3130
#include "shared/runtime/context_manager_helpers.h"

shared-bindings/is31fl3741/IS31FL3741.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
*/
2626

2727
#include "py/obj.h"
28-
#include "py/objproperty.h"
2928
#include "py/runtime.h"
3029
#include "py/objarray.h"
3130

shared-bindings/memorymap/AddressRange.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
*/
2626

2727
#include "py/binary.h"
28-
#include "py/objproperty.h"
2928
#include "py/runtime.h"
3029
#include "py/runtime0.h"
3130
#include "shared-bindings/memorymap/AddressRange.h"

shared-bindings/nvm/ByteArray.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
*/
2626

2727
#include "py/binary.h"
28-
#include "py/objproperty.h"
2928
#include "py/runtime.h"
3029
#include "py/runtime0.h"
3130
#include "shared-bindings/nvm/ByteArray.h"

0 commit comments

Comments
 (0)