micropython/py
Dave Hylands b21786947f py/formatfloat.c: Fix format of floating point numbers near 1.0.
In particular, numbers which are less than 1.0 but which
round up to 1.0.

This also makes those numbers which round up to 1.0 to
print with e+00 rather than e-00 for those formats which
print exponents.

Addresses issue #1178.
2015-04-12 13:06:20 +01:00
..
argcheck.c
asmarm.c py: Adjust some spaces in code style/format, purely for consistency. 2015-04-09 15:29:54 +00:00
asmarm.h
asmthumb.c py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
asmthumb.h py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
asmx64.c py: Adjust some spaces in code style/format, purely for consistency. 2015-04-09 15:29:54 +00:00
asmx64.h py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
asmx86.c py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
asmx86.h py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
bc.c py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
bc.h
bc0.h
binary.c
binary.h
builtin.h
builtinevex.c
builtinimport.c
compile.c py: Remove old debugging printf's in compile.c. 2015-04-11 21:52:27 +01:00
compile.h
emit.h
emitbc.c py: Provide typedefs for function types instead of writing them inline. 2015-04-09 15:31:53 +00:00
emitcommon.c
emitcpy.c
emitglue.c py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
emitglue.h py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
emitinlinethumb.c py: In emitinlinethumb, use qstr_data instead of qstr_str and strlen. 2015-04-11 21:53:39 +01:00
emitnative.c py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
formatfloat.c py/formatfloat.c: Fix format of floating point numbers near 1.0. 2015-04-12 13:06:20 +01:00
formatfloat.h
frozenmod.c
frozenmod.h
gc.c
gc.h
grammar.h
lexer.c
lexer.h
lexerstr.c
lexerunix.c
makeqstrdata.py
malloc.c
map.c py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
misc.h
mkenv.mk
mkrules.mk
modarray.c
modbuiltins.c py: Use a dummy type for referring to extern structs 2015-04-09 15:03:22 +02:00
modcmath.c
modcollections.c
modgc.c
modio.c
modmath.c
modmicropython.c
modstruct.c
modsys.c py: Use a dummy type for referring to extern structs 2015-04-09 15:03:22 +02:00
mpconfig.h py: Adjust some spaces in code style/format, purely for consistency. 2015-04-09 15:29:54 +00:00
mpstate.c
mpstate.h
mpz.c py: Adjust some spaces in code style/format, purely for consistency. 2015-04-09 15:29:54 +00:00
mpz.h
nativeglue.c py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
nlr.h
nlrsetjmp.c
nlrthumb.S
nlrx64.S
nlrx86.S
nlrxtensa.S
obj.c py: Use a dummy type for referring to extern structs 2015-04-09 15:03:22 +02:00
obj.h py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
objarray.c
objbool.c
objboundmeth.c py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
objcell.c py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
objclosure.c
objcomplex.c py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
objdict.c
objenumerate.c py: Add MICROPY_PY_BUILTINS_ENUMERATE, disable for minimal ports. 2015-04-06 23:51:29 +03:00
objexcept.c py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
objexcept.h
objfilter.c
objfloat.c
objfun.c py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
objfun.h
objgenerator.c py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
objgenerator.h
objgetitemiter.c py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
objint.c
objint.h
objint_longlong.c
objint_mpz.c
objlist.c
objlist.h
objmap.c
objmodule.c py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
objmodule.h
objnamedtuple.c py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
objnone.c
objobject.c
objproperty.c
objrange.c py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
objreversed.c py: Add MICROPY_PY_BUILTINS_REVERSED, disable for minimal ports. 2015-04-07 00:17:11 +03:00
objset.c
objslice.c
objstr.c objstr: split(None): Fix whitespace properly. 2015-04-12 00:17:57 +03:00
objstr.h py: Adjust some spaces in code style/format, purely for consistency. 2015-04-09 15:29:54 +00:00
objstringio.c
objstrunicode.c py: In str unicode, str_subscr will never be passed a bytes object. 2015-04-04 19:42:03 +01:00
objtuple.c
objtuple.h
objtype.c py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
objtype.h py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
objzip.c
opmethods.c
parse.c
parse.h
parsenum.c
parsenum.h
parsenumbase.c
parsenumbase.h
pfenv.c py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
pfenv.h
pfenv_printf.c
py-version.sh
py.mk
qstr.c
qstr.h py: Adjust some spaces in code style/format, purely for consistency. 2015-04-09 15:29:54 +00:00
qstrdefs.h py: Implement delete for property and descriptors. 2015-04-04 20:15:31 +01:00
repl.c
repl.h
runtime.c py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
runtime.h
runtime0.h py: Implement full func arg passing for native emitter. 2015-04-07 22:43:28 +01:00
scope.c
scope.h
sequence.c
showbc.c py: Simplify bytecode prelude when encoding closed over variables. 2015-04-07 00:08:17 +01:00
smallint.c
smallint.h
stackctrl.c
stackctrl.h
stream.c
stream.h
unicode.c py: Adjust some spaces in code style/format, purely for consistency. 2015-04-09 15:29:54 +00:00
unicode.h
vm.c py: Combine load_attr and store_attr type methods into one (attr). 2015-04-11 16:54:37 +01:00
vmentrytable.h
vstr.c
warning.c