- Jun 21, 2014
-
-
Paul Sokolovsky authored
It defines types used by all other headers. Fixes #691.
-
- Jun 20, 2014
-
-
Paul Sokolovsky authored
In generalize case, optimization options should be passed to all stages of the build process.
-
Paul Sokolovsky authored
Expected to be set on command line, with the idea being that for different targets, there're different smartass ABIs which strive to put unneeded sections into executables, etc., so let people have flexible way to strip that. The option name is similar to previously introduced CLFAGS_EXTRA & LDFLAGS_EXTRA.
-
Paul Sokolovsky authored
One thing is wanting to do 1 / 2 and get something else but 0, and quite another - doing rocket science ;-).
-
- Jun 19, 2014
-
-
Emmanuel Blot authored
-
Emmanuel Blot authored
-
- Jun 18, 2014
- Jun 16, 2014
-
-
stijn authored
Add more DEBUG_printf statements to trace gc behaviour
-
- Jun 14, 2014
-
-
Paul Sokolovsky authored
char can be signedness, and using signedness types is dangerous - it can lead to negative offsets when doing table lookups. We apparently should just ban char usage.
-
Paul Sokolovsky authored
In preparation for unicode support.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
We still have that char vs byte dichotomy, but majority of string operations now use byte.
-
- Jun 13, 2014
-
-
Paul Sokolovsky authored
This will allow roughly the same behavior as Python3 for non-ASCII strings, for example, print("<phrase in non-Latin script>".split()) will print list of words, not weird hex dump (like Python2 behaves). (Of course, that it will print list of words, if there're "words" in that phrase at all, separated by ASCII-compatible whitespace; that surely won't apply to every human language in existence).
-
Damien George authored
-
Paul Sokolovsky authored
Getting a length of string may be expensive, depending on the underlying implementation.
-
stijn authored
void* is of unknown size
-
- Jun 12, 2014
-
-
Damien George authored
-
- Jun 11, 2014
-
-
Paul Sokolovsky authored
Functionality we provide in builtin io module is fairly minimal. Some code, including CPython stdlib, depends on more functionality. So, there's a choice to either implement it in C, or move it _io, and let implement other functionality in Python. 2nd choice is pursued. This setup matches CPython too (_io is builtin, io is Python-level).
-
Damien George authored
-
Damien George authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
It needs to be reused for generator functions, too.
-
- Jun 10, 2014
-
-
Damien George authored
-
- Jun 09, 2014
-
-
Chris Angelico authored
At this point, start will be >= 0, so checking if stop < 0 is redundant with checking if start > stop a few lines later.
-
- Jun 08, 2014
-
-
Paul Sokolovsky authored
This is getting more and more tangled, but that's old news.
-
Paul Sokolovsky authored
As before, instead of pushing constant values on stack again and again, just pass around pointer to a structure.
-
- Jun 07, 2014
-
-
Damien George authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Damien George authored
Should finish addressing issue #524.
-
Paul Sokolovsky authored
Ports which wants to have it, should define MICROPY_PY_SYS_PLATFORM to a string value they need.
-
Paul Sokolovsky authored
Benefits: won't crash baremetal targets, will provide Python source location when not implemented feature used (it will no longer provide C source location, but just grep for error message).
-
Damien George authored
This reduces stack usage by 16 words (64 bytes) for stmhal/ port. See issue #640.
-
Damien George authored
?= operator does not do delayed expansion (unlike =).
-
Marcus von Appen authored
- Move the includes for alloca() intp mpconfigport.h
-
Marcus von Appen authored
there are special tweaks and paths to be considered. Just provide some defaults, in case the values are undefined. - py-version.sh does not need any bash specific features. - Use libdl only on Linux for now. FreeBSD provides dl*() calls from libc.
-
- Jun 06, 2014
-
-
Chris Angelico authored
-