Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Initial package rename: | 2012-12-30 | 221 | -72843/+0 | |
| | | | | | | | | | pypy.rpython -> rpython.rtyper pypy.translator -> rpython.translator pypy.rlib -> rpython.rlib pypy.jit -> rpython.jit pypy.objspace.flow -> rpython.flowspace pypy.annotation -> rpython.annotator | ||||
* | getitem/setitem on bytearray | 2012-12-26 | 3 | -3/+52 | |
| | |||||
* | merge default | 2012-12-26 | 1 | -0/+1 | |
|\ | |||||
| * | skip this test too | 2012-12-26 | 1 | -0/+1 | |
| | | |||||
* | | merge default | 2012-12-26 | 1 | -1/+2 | |
|\| | |||||
| * | This test doesn't and shouldn't run on unicode. | 2012-12-25 | 1 | -1/+2 | |
| | | |||||
* | | one more test | 2012-12-26 | 2 | -1/+10 | |
| | | |||||
* | | merge | 2012-12-26 | 1 | -0/+2 | |
|\ \ | |||||
| * | | Add asserts that should pass, but don't | 2012-12-26 | 1 | -0/+2 | |
| | | | |||||
* | | | fix the test | 2012-12-26 | 3 | -5/+9 | |
|/ / | |||||
* | | progress towards addition | 2012-12-26 | 4 | -21/+98 | |
| | | |||||
* | | basic bytearray creation | 2012-12-24 | 8 | -3/+77 | |
|/ | |||||
* | cut dependency annotation.model -> unaryop, binaryop | 2012-12-12 | 5 | -16/+17 | |
| | | | | | | | This makes annotation.model very lean on dependencies, which keeps rlib.types lean, which will be very helpful in importing the latter all over for signatures without creating cyclic dependencies. | ||||
* | malloc: small cleanups | 2012-12-12 | 1 | -3/+3 | |
| | | | | | Some logic and an error message hadn't kept up with changes over the years. | ||||
* | apply the TestOOtype skips to jvm/cli explicitly | 2012-12-18 | 1 | -2/+2 | |
| | | | | string_to_float seems to work whereas parts_to_float doesn't | ||||
* | preallocate stuff in charp2str | 2012-12-15 | 1 | -1/+4 | |
| | |||||
* | isdigit on strings | 2012-12-14 | 2 | -6/+32 | |
| | |||||
* | support isalpha on strings | 2012-12-14 | 2 | -0/+26 | |
| | |||||
* | add a half even rounding mode to round_double for py3k | 2012-12-14 | 1 | -0/+9 | |
| | |||||
* | readd rfloat tests that seem to have been mistakenly removed in d7a6c72 | 2012-12-14 | 1 | -1/+171 | |
| | |||||
* | no bonus points for trying too hard | 2012-12-13 | 1 | -4/+0 | |
| | |||||
* | prefer OverflowError for log{,10,1p} math edge cases | 2012-12-13 | 1 | -0/+6 | |
| | |||||
* | Fix these tests | 2012-12-02 | 1 | -0/+3 | |
| | |||||
* | unroll this function when the size of the list is constant and small | 2012-12-02 | 1 | -4/+5 | |
| | |||||
* | Remove insist translation option, which has long been useless. | 2012-12-01 | 1 | -9/+2 | |
| | |||||
* | Kill the "marksweep" GC and the "markcompact" GC. The former was here | 2012-12-01 | 8 | -1397/+13 | |
| | | | | | | for historical reasons only but never made much sense performance-wise. The latter is not maintained and slightly broken for now; it's revivable if there is interest. | ||||
* | hg merge default | 2012-11-28 | 19 | -54/+202 | |
|\ | |||||
| * | Change _always_inline_=True to crash if inlining fails. Use ↵ | 2012-11-23 | 1 | -2/+2 | |
| | | | | | | | | _always_inline_='try' to not crash if it fails. Fixes left and right. | ||||
| * | Fix (I think) log1p on Windows. | 2012-11-22 | 1 | -1/+1 | |
| | | |||||
| * | Add os.fchown() and os.fchmod(). | 2012-11-19 | 1 | -0/+27 | |
| | | |||||
| * | Tweak the implementation of math.log1p in RPython to be more similar to | 2012-11-18 | 3 | -4/+21 | |
| | | | | | | | | | | math.log and math.log10. Also, this lets us add a special-case, backported recently to Python 2.7: math.log1p(-0.0) == -0.0. | ||||
| * | merge default | 2012-11-14 | 3 | -15/+11 | |
| |\ | |||||
| | * | unskip&fix test_{upper,lower}_char for ootype (this fixes also the ↵ | 2012-11-12 | 3 | -15/+11 | |
| | | | | | | | | | | | | correspondent CLI tests) | ||||
| * | | merge default | 2012-11-11 | 79 | -2103/+771 | |
| |\| | |||||
| | * | merge | 2012-11-07 | 6 | -4/+50 | |
| | |\ | |||||
| | | * | Should make the "extra" flag really independent from any other flag | 2012-11-07 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | | used in the GC. | ||||
| | | * | Tweak the gc.get_*() functions to give them hopefully reasonable | 2012-11-07 | 5 | -2/+46 | |
| | | | | | | | | | | | | | | | | | | | | performance, based on the new ability to set and clear a flag in the object headers from RPython. | ||||
| | * | | fix termios tests | 2012-11-07 | 1 | -24/+39 | |
| | |/ | |||||
| | * | Fix non-obvious annotation bug. | 2012-11-03 | 1 | -0/+20 | |
| | | | |||||
| * | | fix mishandling of bad length hints in zip, add some related asserts | 2012-10-05 | 1 | -0/+1 | |
| | | | |||||
| * | | merge default | 2012-09-26 | 1 | -6/+15 | |
| |\ \ | |||||
| * | | | (fijal) don't overalloc in resizelist_hint ge | 2012-09-24 | 1 | -3/+1 | |
| | | | | |||||
| * | | | merge default | 2012-09-24 | 5 | -134/+129 | |
| |\ \ \ | |||||
| * \ \ \ | merge default | 2012-09-12 | 20 | -31/+277 | |
| |\ \ \ \ | |||||
| * \ \ \ \ | merge default | 2012-08-23 | 21 | -57/+287 | |
| |\ \ \ \ \ | |||||
| * | | | | | | an ootype _ll_resize_hint attempt | 2012-07-14 | 2 | -0/+3 | |
| | | | | | | | |||||
| * | | | | | | have resizelist_hint return nothing and not change the actual len | 2012-07-14 | 1 | -5/+30 | |
| | | | | | | | |||||
* | | | | | | | hg merge default | 2012-10-28 | 15 | -571/+79 | |
|\ \ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | | | |||||
| * | | | | | | A bug and fix in the dict insertion code. Interestingly, CPython has | 2012-10-28 | 3 | -16/+64 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | the same bug until changes in 3.3 fixed it. | ||||
| * | | | | | | (ronan mostly) merging translation-cleanup branch, where we split | 2012-10-21 | 4 | -31/+2 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | interpreter and the RPython compilation toolchain |