- 11 Feb, 2014 1 commit
-
-
Paul Sokolovsky authored
Please don't submit patches with tab indentation!
-
- 08 Feb, 2014 1 commit
-
-
Damien George authored
Can't decide which is better for string type, char or byte pointer. Changing to char removes a few casts. Really need to do proper unicode.
-
- 02 Feb, 2014 3 commits
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Takes slice object and sequence length and computes subsequence indexes for case of slice step=1.
-
- 01 Feb, 2014 1 commit
-
-
Damien George authored
IS_NOT and NOT_IN are now compiled to IS + NOT and IN + NOT, with a new special NOT bytecode.
-
- 31 Jan, 2014 2 commits
-
-
Damien George authored
-
xbe authored
-
- 28 Jan, 2014 1 commit
-
-
Paul Sokolovsky authored
-
- 25 Jan, 2014 2 commits
-
-
Damien George authored
-
Damien George authored
Addresses Issue #203.
-
- 24 Jan, 2014 1 commit
-
-
Paul Sokolovsky authored
This reuses as much str implementation as possible, from this we can make them more separate as needed.
-
- 23 Jan, 2014 2 commits
-
-
Damien George authored
-
Paul Sokolovsky authored
-
- 22 Jan, 2014 1 commit
-
-
Damien George authored
-
- 21 Jan, 2014 3 commits
-
-
Damien George authored
Can now have null bytes in strings. Can define ROM qstrs per port using qstrdefsport.h
-
Paul Sokolovsky authored
Note that splitting by explicit string is not implemented so far.
-
Paul Sokolovsky authored
Also, support negative indexes.
-
- 20 Jan, 2014 2 commits
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- 19 Jan, 2014 2 commits
-
-
Paul Sokolovsky authored
-
Damien George authored
-
- 16 Jan, 2014 1 commit
-
-
Paul Sokolovsky authored
That at least makes stuff like "{:x}".format(1) to produce not completely broken output.
-
- 15 Jan, 2014 1 commit
-
-
Paul Sokolovsky authored
-
- 13 Jan, 2014 3 commits
-
-
Damien George authored
-
Damien George authored
-
Dave Hylands authored
-
- 12 Jan, 2014 1 commit
-
-
John R. Lenton authored
-
- 11 Jan, 2014 1 commit
-
-
John R. Lenton authored
-
- 09 Jan, 2014 1 commit
-
-
Damien George authored
-
- 08 Jan, 2014 1 commit
-
-
xbe authored
-
- 07 Jan, 2014 3 commits
-
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
It's not really about that, though; it's about me figuring out a sane way forward for keyword-argument functions (and function metadata). But it's useful as is, and shouldn't break any existing code, so here you have it; I'm going to park it in my mind for a bit while sorting out the rest of the dict branch.
-
- 06 Jan, 2014 2 commits
- 05 Jan, 2014 2 commits
-
-
Paul Sokolovsky authored
-
xyb authored
-
- 04 Jan, 2014 2 commits
-
-
Damien George authored
Now much more inline with how CPython does types.
-
Damien George authored
Qstr's are now split into a linked-list of qstr pools. This has 2 benefits: the first pool can be in ROM (huge benefit, since we no longer use RAM for the core qstrs), and subsequent pools use m_new for the next pool instead of m_renew (thus avoiding a huge single table for all the qstrs). Still would be better to use a hash table, but this scheme takes us part of the way (eventually convert the pools to hash tables). Also fixed bug with import. Also improved the way the module code is referenced (not magic number 1 anymore).
-