- Jan 18, 2014
-
-
Damien George authored
Byte code has a map from byte-code offset to source-code line number, used to give better error messages.
-
Damien George authored
Now searches both locals_dict and methods. Partly addresses Issue #145.
-
Damien George authored
Now working for class-defined methods: __getitem__, __setitem__, __add__, __sub__. Easy to add others.
-
Paul Sokolovsky authored
mp_obj_int_get() can be used when just full resolution of C machine_int_t is required (returns truncated value of long int). mp_obj_int_get_checked() will throw exception if Python int value not representable in machine_int_t.
-
Damien George authored
Change state layout in VM so the stack starts at state[0] and grows upwards. Locals are at the top end of the state and number downwards. This cleans up a lot of the interface connecting the VM to C: now all functions that take an array of Micro Python objects are in order (ie no longer in reverse). Also clean up C API with keyword arguments (call_n and call_n_kw replaced with single call method that takes keyword arguments). And now make_new takes keyword arguments. emitnative.c has not yet been changed to comply with the new order of stack layout.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- Jan 17, 2014
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- Jan 16, 2014
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Implicit "micropython" module contains (at least) codegeneration decorators. Make it explicit, so an app could have "import micropython". On MicroPython, that will be no-op. On CPython, that will give a chance to have a module with placeholder decorators.
-
Paul Sokolovsky authored
Per Python3 io module semantics.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
That at least makes stuff like "{:x}".format(1) to produce not completely broken output.
-
- Jan 15, 2014
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
Parser no longer prints an error, but instead returns an exception ID and message.
-
xyb authored
-
xyb authored
-
John R. Lenton authored
-
John R. Lenton authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- Jan 14, 2014
-
-
John R. Lenton authored
-
Damien George authored
-
Paul Sokolovsky authored
So far, don't work for strings as expected.
-
Paul Sokolovsky authored
This implements internal args tuple of arguments, while still keeping object useful for reporting C-side errors. Further elaboration is needed.
-
Paul Sokolovsky authored
This is useful because tuple is closest analog of C static array.
-
xyb authored
-
xyb authored
-
- Jan 13, 2014
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
vstr is initially intended to deal with arbitrary-length strings. By providing a bit lower-level API calls, it will be also useful to deal with arbitrary-length I/O buffers (the difference from strings is that buffers are filled from "outside", via I/O). Another issue, especially aggravated by I/O buffer use, is alloc size vs actual size length. If allocated 1Mb for buffer, but actually read 1 byte, we don't want to keep rest of 1Mb be locked by this I/O result, but rather return it to heap ASAP ("shrink" buffer before passing it to qstr_from_str_take()).
-
Paul Sokolovsky authored
By dispatching to long int methods.
-
Paul Sokolovsky authored
-
John R. Lenton authored
Made sorted() raise an exception instead of aborting when given no arguments; moved around some things in objfun.c as a consequence
-
John R. Lenton authored
-
Damien George authored
-