micropython/py
Paul Sokolovsky c6813d92db py: Put default namespace into module __main__.
That's how CPython has it, in particular, "import __main__" should work.
2014-04-05 12:29:15 +03:00
..
asmthumb.c
asmthumb.h
asmx64.c
asmx64.h
bc.h
bc0.h py: Add LOAD_NULL bytecode and use it to simplify function calls. 2014-03-31 11:59:23 +01:00
binary.c
binary.h
builtin.c py: Remove mp_obj_less (use mp_binary_op(MP_BINARY_OP_LESS..) instead). 2014-04-04 15:07:17 +01:00
builtin.h py: Put default namespace into module __main__. 2014-04-05 12:29:15 +03:00
builtinevex.c
builtinimport.c
builtintables.c py: Put default namespace into module __main__. 2014-04-05 12:29:15 +03:00
builtintables.h
compile.c py: Enable optimisation of multiplying 2 small ints in compiler. 2014-04-04 11:21:58 +00:00
compile.h
emit.h py: Move to Python 3.4.0 compatibility. 2014-04-02 15:56:31 +01:00
emitbc.c py: Move to Python 3.4.0 compatibility. 2014-04-02 15:56:31 +01:00
emitcommon.c
emitcpy.c py: Move to Python 3.4.0 compatibility. 2014-04-02 15:56:31 +01:00
emitglue.c py: Towards default keyword arguments. 2014-03-31 15:18:37 +01:00
emitglue.h
emitinlinethumb.c
emitnative.c py: Move to Python 3.4.0 compatibility. 2014-04-02 15:56:31 +01:00
emitpass1.c py: Move to Python 3.4.0 compatibility. 2014-04-02 15:56:31 +01:00
formatfloat.c Enhance str.format support 2014-04-01 01:17:33 -07:00
formatfloat.h
gc.c gc: Uses uint defined in misc.h. 2014-04-02 20:36:32 +03:00
gc.h
grammar.h
lexer.c
lexer.h
lexerstr.c
lexerunix.c
lexerunix.h
makeqstrdata.py
malloc.c py: Add m_malloc_fail function to handle memory allocation error. 2014-04-04 10:52:59 +00:00
map.c map: Add mp_map_dump() (#ifdef'ed) to be handy when debugging maps. 2014-04-05 05:10:02 +03:00
misc.h py: Add m_malloc_fail function to handle memory allocation error. 2014-04-04 10:52:59 +00:00
mkenv.mk
mkrules.mk
modarray.c
modcollections.c
modio.c py: Add "io" module. 2014-04-03 22:08:57 +03:00
modmath.c py: Fix math.{ceil,floor,trunc} to return int. 2014-04-01 21:21:50 +01:00
modmicropython.c
mpconfig.h py: Add "io" module. 2014-04-03 22:08:57 +03:00
mpz.c py: Handle small int power overflow correctly. 2014-04-04 00:16:32 +01:00
mpz.h py: More robust int conversion and overflow checking. 2014-04-03 11:00:54 +00:00
nlr.h Changes to get unix/ port compiling on Cygwin. 2014-04-03 23:51:16 +01:00
nlrthumb.S
nlrx64.S Changes to get unix/ port compiling on Cygwin. 2014-04-03 23:51:16 +01:00
nlrx86.S
obj.c py: Remove mp_obj_less (use mp_binary_op(MP_BINARY_OP_LESS..) instead). 2014-04-04 15:07:17 +01:00
obj.h map: Add mp_map_dump() (#ifdef'ed) to be handy when debugging maps. 2014-04-05 05:10:02 +03:00
objarray.c py: Fix "TypeError: 'iterator' object is not iterable", doh. 2014-03-30 23:37:24 +03:00
objarray.h
objbool.c py: Make False and True act like 0 and 1 for integer arithmetic. 2014-04-04 15:08:23 +01:00
objboundmeth.c
objcell.c
objclosure.c
objcomplex.c
objdict.c py: Allow dict constructor to take keyword arguments. 2014-04-04 15:08:00 +01:00
objenumerate.c
objexcept.c py: Add m_malloc_fail function to handle memory allocation error. 2014-04-04 10:52:59 +00:00
objfilter.c
objfloat.c py: Implement floating point power binop. 2014-04-02 12:26:49 +01:00
objfun.c py: Disable dump_args function call entirely when not debugging. 2014-03-31 15:59:25 +01:00
objgenerator.c objgenerator.throw(GeneratorExit) is not equivalent to .close(). 2014-03-31 17:22:37 +03:00
objgenerator.h
objgetitemiter.c py: Fix "TypeError: 'iterator' object is not iterable", doh. 2014-03-30 23:37:24 +03:00
objint.c py: Make False and True act like 0 and 1 for integer arithmetic. 2014-04-04 15:08:23 +01:00
objint.h py: Make False and True act like 0 and 1 for integer arithmetic. 2014-04-04 15:08:23 +01:00
objint_longlong.c py: Make False and True act like 0 and 1 for integer arithmetic. 2014-04-04 15:08:23 +01:00
objint_mpz.c py: Make False and True act like 0 and 1 for integer arithmetic. 2014-04-04 15:08:23 +01:00
objlist.c py: More robust int conversion and overflow checking. 2014-04-03 11:00:54 +00:00
objmap.c
objmodule.c
objmodule.h
objnamedtuple.c
objnone.c
objobject.c
objrange.c py: Fix "TypeError: 'iterator' object is not iterable", doh. 2014-03-30 23:37:24 +03:00
objset.c py: Fix "TypeError: 'iterator' object is not iterable", doh. 2014-03-30 23:37:24 +03:00
objslice.c
objstr.c Implements most of str.modulo 2014-04-03 23:55:02 -07:00
objtuple.c py: Fix "TypeError: 'iterator' object is not iterable", doh. 2014-03-30 23:37:24 +03:00
objtuple.h
objtype.c py: Factor out static/class method unwrapping code; add tests. 2014-04-02 14:13:26 +01:00
objzip.c
parse.c
parse.h
parsehelper.c
parsehelper.h
parsenum.c
parsenum.h
parsenumbase.c
parsenumbase.h
pfenv.c py: Make pfenv.c conform to code conventions. 2014-04-01 21:15:03 +01:00
pfenv.h Enhance str.format support 2014-04-01 01:17:33 -07:00
py-version.sh Add the git version to the banner 2014-04-03 16:55:15 -07:00
py.mk Merge pull request #421 from dhylands/git-version 2014-04-04 16:09:29 +01:00
qstr.c
qstr.h
qstrdefs.h py: Add "io" module. 2014-04-03 22:08:57 +03:00
repl.c
repl.h
runtime.c py: Put default namespace into module __main__. 2014-04-05 12:29:15 +03:00
runtime.h py: Implement __getattr__. 2014-03-31 22:57:56 +01:00
runtime0.h
scope.c
scope.h
sequence.c
showbc.c py: Add LOAD_NULL bytecode and use it to simplify function calls. 2014-03-31 11:59:23 +01:00
smallint.c py: This time, real proper overflow checking of small int power. 2014-04-04 11:13:51 +00:00
smallint.h py: This time, real proper overflow checking of small int power. 2014-04-04 11:13:51 +00:00
stream.c
stream.h
unicode.c
vm.c py: Add m_malloc_fail function to handle memory allocation error. 2014-04-04 10:52:59 +00:00
vstr.c py: Fix vstr_init for case that alloc = 0. 2014-03-31 17:10:59 +01:00