2014-05-03 22:27:38 +00:00
|
|
|
/*
|
2017-06-30 07:22:17 +00:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-05-03 22:27:38 +00:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2013-12-21 18:17:45 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2015-01-01 20:27:54 +00:00
|
|
|
#include "py/obj.h"
|
2013-12-21 18:17:45 +00:00
|
|
|
|
2020-01-08 13:00:27 +00:00
|
|
|
#if !MICROPY_OBJ_IMMEDIATE_OBJS
|
2013-12-21 18:17:45 +00:00
|
|
|
typedef struct _mp_obj_none_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
} mp_obj_none_t;
|
2020-01-08 13:00:27 +00:00
|
|
|
#endif
|
2013-12-21 18:17:45 +00:00
|
|
|
|
2015-04-09 22:56:15 +00:00
|
|
|
STATIC void none_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
|
2015-01-20 12:47:20 +00:00
|
|
|
(void)self_in;
|
2014-09-17 21:56:34 +00:00
|
|
|
if (MICROPY_PY_UJSON && kind == PRINT_JSON) {
|
2015-04-09 22:56:15 +00:00
|
|
|
mp_print_str(print, "null");
|
2014-09-17 21:56:34 +00:00
|
|
|
} else {
|
2015-04-09 22:56:15 +00:00
|
|
|
mp_print_str(print, "None");
|
2014-09-17 21:56:34 +00:00
|
|
|
}
|
2013-12-21 18:17:45 +00:00
|
|
|
}
|
|
|
|
|
2014-03-29 13:15:08 +00:00
|
|
|
const mp_obj_type_t mp_type_NoneType = {
|
2014-02-15 16:10:44 +00:00
|
|
|
{ &mp_type_type },
|
2014-02-15 11:34:50 +00:00
|
|
|
.name = MP_QSTR_NoneType,
|
2014-01-05 20:34:09 +00:00
|
|
|
.print = none_print,
|
2016-09-19 02:20:41 +00:00
|
|
|
.unary_op = mp_generic_unary_op,
|
2013-12-21 18:17:45 +00:00
|
|
|
};
|
|
|
|
|
2020-01-08 13:00:27 +00:00
|
|
|
#if !MICROPY_OBJ_IMMEDIATE_OBJS
|
2014-03-29 13:15:08 +00:00
|
|
|
const mp_obj_none_t mp_const_none_obj = {{&mp_type_NoneType}};
|
2020-01-08 13:00:27 +00:00
|
|
|
#endif
|