- 12 Feb, 2017 4 commits
-
-
Dylan Trotter authored
-
Dong-hee Na authored
-
Long Ang authored
-
Long Ang authored
-
- 08 Feb, 2017 4 commits
-
-
Dong-hee Na authored
-
Long Ang authored
-
Long Ang authored
-
Long Ang authored
-
- 06 Feb, 2017 1 commit
-
-
Garry Bullock authored
-
- 05 Feb, 2017 1 commit
-
-
YOU authored
-
- 04 Feb, 2017 2 commits
-
-
Dylan Trotter authored
-
YOU authored
-
- 02 Feb, 2017 2 commits
-
-
Long Ang authored
-
Dong-hee Na authored
-
- 01 Feb, 2017 2 commits
-
-
Dong-hee Na authored
-
Cholerae Hu authored
-
- 31 Jan, 2017 2 commits
-
-
Cholerae Hu authored
-
cclauss authored
In CPython the function form is twice as slow.
-
- 28 Jan, 2017 1 commit
-
-
Brian Atkinson authored
This eliminates an extra allocation for the backing array by storing it in the memory directly following the tuple itself.
-
- 27 Jan, 2017 4 commits
-
-
Meador Inge authored
This patch adds minimal support for complex numbers. Complex literals can be parsed and a very minimal complex number type has been added to the runtime. While minimal, the basic pieces are fleshed out enough that producing follow-on patches to incrementally develop `complex` should be easy.
-
YOU authored
-
Miguel Matos authored
-
YOU authored
-
- 26 Jan, 2017 2 commits
-
-
Meador Inge authored
-
cclauss authored
-
- 25 Jan, 2017 1 commit
-
-
YOU authored
-
- 24 Jan, 2017 4 commits
-
-
YOU authored
-
Brian Atkinson authored
-
Brian Atkinson authored
Method covered by new benchmarks: * Dict.GetItem * Dict.IterItems * Dict.IterKeys * Dict.IterValues * NewInt - Fixed so that references aren't elided anymore. * NewStr
-
Meador Inge authored
As specified here: * https://docs.python.org/2/library/stdtypes.html#sequence-types-str-unicode-list-tuple-bytearray-buffer-xrange This commit only uses the sequence count method for `list.count`, but it can easily be applied to other sequence types in follow-on commits.
-
- 23 Jan, 2017 2 commits
- 22 Jan, 2017 6 commits
-
-
YOU authored
-
YOU authored
-
johnl authored
Slight punctuation and hyphenation improvements, with additional styling on command and directory names.
-
YOU authored
-
Meador Inge authored
In the course of reviewing #116 it came to light that some of the other `str` methods that involve changing case do not handle multi-byte characters correctly. This patch fixes that.
-
Dylan Trotter authored
Replaced FunctionArg with Param and moved arg validation logic out of Code and into new ParamSpec type. ParamSpec can then be made more general purpose and used for builtin functions.
-
- 21 Jan, 2017 2 commits
-
-
Brian Atkinson authored
Rather than allocating a frame on every call, we keep an already allocated list of frames ready to go. This trades lightly more memory usage for faster calls.
-
Brian Atkinson authored
-