aboutsummaryrefslogtreecommitdiff
path: root/py/builtin.h
diff options
context:
space:
mode:
authorstijn <stinos@zoho.com>2014-10-04 08:51:33 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-10-21 22:10:01 +0300
commit2fe4cf7761ffc40d81b4780d59c2b6ef0a5c16ff (patch)
treea959cd20a8f4458861a3589f9d179225609ffc19 /py/builtin.h
parent072bd07f178998f2c88cd2ceef86dea7902a1764 (diff)
Implement kwargs for builtin open() and _io.FileIO
This makes open() and _io.FileIO() more CPython compliant. The mode kwarg is fully iplemented. The encoding kwarg is allowed but not implemented; mainly to allow the tests to specify encoding for CPython, see #874
Diffstat (limited to 'py/builtin.h')
-rw-r--r--py/builtin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtin.h b/py/builtin.h
index 01ec22d2b..a69712bec 100644
--- a/py/builtin.h
+++ b/py/builtin.h
@@ -25,7 +25,7 @@
*/
mp_obj_t mp_builtin___import__(mp_uint_t n_args, mp_obj_t *args);
-mp_obj_t mp_builtin_open(mp_uint_t n_args, const mp_obj_t *args);
+mp_obj_t mp_builtin_open(mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs);
MP_DECLARE_CONST_FUN_OBJ(mp_builtin___build_class___obj);
MP_DECLARE_CONST_FUN_OBJ(mp_builtin___import___obj);