Numworks Epsilon  1.4.1
Graphing Calculator Operating System
objobject.c File Reference
#include <stdlib.h>
#include "py/objtype.h"
#include "py/runtime.h"

Go to the source code of this file.

Classes

struct  _mp_obj_object_t
 

Typedefs

typedef struct _mp_obj_object_t mp_obj_object_t
 

Functions

STATIC mp_obj_t object_make_new (const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args)
 

Variables

const mp_obj_type_t mp_type_object
 

Typedef Documentation

◆ mp_obj_object_t

Function Documentation

◆ object_make_new()

STATIC mp_obj_t object_make_new ( const mp_obj_type_t type,
size_t  n_args,
size_t  n_kw,
const mp_obj_t args 
)

Definition at line 36 of file objobject.c.

Variable Documentation

◆ mp_type_object

const mp_obj_type_t mp_type_object
Initial value:
= {
.name = MP_QSTR_object,
.make_new = object_make_new,
}
const mp_obj_type_t mp_type_type
Definition: objtype.c:969
qstr name
Definition: obj.h:478
STATIC mp_obj_t object_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args)
Definition: objobject.c:36

Definition at line 74 of file objobject.c.