| Commit message (Expand) | Author | Age | Files | Lines |
* | copy an optimization from CPython: when the search string of str.replace and | Carl Friedrich Bolz-Tereick | 2021-02-25 | 1 | -2/+20 |
* | fix bug | Carl Friedrich Bolz-Tereick | 2020-02-29 | 1 | -1/+1 |
* | fix for zero-length in e19783dac960 | Matti Picus | 2020-02-28 | 1 | -0/+2 |
* | help the annotator use a more efficient comparison | Carl Friedrich Bolz-Tereick | 2020-02-27 | 1 | -1/+1 |
* | fix the error message also for W_AbstractBytesObject | Armin Rigo | 2019-10-14 | 1 | -0/+1 |
* | fix utf-8 string formatting bug | Carl Friedrich Bolz-Tereick | 2019-02-22 | 1 | -1/+1 |
* | deal with s.encode() differently (where s can be either bytes or unicode) | Matti Picus | 2019-02-09 | 1 | -5/+1 |
* | 'abc'.encode(...) in cpython calls 'abc'.decode('ascii', 'strict').encode(...) | Matti Picus | 2019-01-01 | 1 | -1/+5 |
* | fix recursive call to decode_object, set errorhandler | Matti Picus | 2018-09-12 | 1 | -3/+1 |
* | Translation fixes. The 'fix' in unicodeobject merely shows the next problem | Armin Rigo | 2017-10-14 | 1 | -2/+2 |
* | hg merge default | Armin Rigo | 2017-08-24 | 1 | -38/+4 |
|\ |
|
| * | do not go through descroperation.binop_impl again, call descr_add directly | Matti Picus | 2017-05-26 | 1 | -1/+1 |
| * | more places to convert hash value -1 to -2, see comments to issue #2346 | Matti Picus | 2017-05-26 | 1 | -0/+1 |
| * | Remove unused translation option 'withstrbuf' and supporting code | Ronan Lamy | 2017-05-20 | 1 | -36/+0 |
| * | Backport memoryview changes | Ronan Lamy | 2017-05-02 | 1 | -1/+2 |
| * | Partial back-out of changeset 4b63e7093115 | Armin Rigo | 2017-04-05 | 1 | -0/+0 |
| * | conditionally call vmp_native_enable/disable (only if platform supports it), ... | Richard Plangger | 2017-04-03 | 1 | -0/+0 |
* | | (fijal, argio) whack until we run into a serious problem | fijal | 2017-02-27 | 1 | -12/+2 |
* | | * whack whack whack | fijal | 2017-02-26 | 1 | -0/+5 |
* | | enough plumbing to pass some tests, not efficient at all | fijal | 2017-02-25 | 1 | -2/+2 |
* | | implement utf8 gateway (that passes unicode length as a second param) | fijal | 2017-02-25 | 1 | -2/+10 |
* | | start passing some unicode tests. no UCS4 support yet completely | fijal | 2017-02-22 | 1 | -2/+2 |
* | | fix the nomenclature and put a few stop gaps in places we know need fixing | fijal | 2017-02-21 | 1 | -1/+1 |
* | | Start fighting on a new branch with utf8 being the default storage | fijal | 2017-02-21 | 1 | -3/+2 |
|/ |
|
* | hg merge default | Armin Rigo | 2017-02-13 | 1 | -0/+2 |
|\ |
|
| * | Add a couple of jit.elidable | Armin Rigo | 2017-01-15 | 1 | -0/+2 |
* | | replace more w_str and str_w instances | Carl Friedrich Bolz | 2016-12-01 | 1 | -9/+9 |
* | | merge default | Carl Friedrich Bolz | 2016-11-02 | 1 | -0/+4 |
|\| |
|
| * | test, fix __rmod__ and -A incompatibilities with cpython on str, unicode | Matti Picus | 2016-10-18 | 1 | -0/+4 |
* | | remove some str_w calls | Carl Friedrich Bolz | 2016-11-01 | 1 | -4/+4 |
* | | remove a lot of space.wrap calls in the objspace and replace them by space.new* | Carl Friedrich Bolz | 2016-10-20 | 1 | -4/+4 |
|/ |
|
* | test, fix for argument to strip() - must be None, str, unicode (cpython compa... | Matti Picus | 2016-09-30 | 1 | -1/+4 |
* | merge default | Richard Plangger | 2016-08-24 | 1 | -2/+0 |
|\ |
|
* | | revert to original return value | Matti Picus | 2016-08-23 | 1 | -2/+5 |
* | | undo the renaming commit | Richard Plangger | 2016-08-22 | 1 | -16/+16 |
* | | renamed W_StringBufferObject to W_StringBuilderObject (really a string builde... | Richard Plangger | 2016-08-22 | 1 | -14/+14 |
* | | typo, module name incomplete, moved import to avoid cyclic dep. | Richard Plangger | 2016-08-22 | 1 | -1/+1 |
* | | can only return a W_Root object to app level (translation issue) | Richard Plangger | 2016-08-22 | 1 | -2/+2 |
* | | __buffer__ is a method with a flags arg, not an attibute | Matti Picus | 2016-08-22 | 1 | -2/+2 |
* | | add test of getitem, fix CPyBuffer object so they pass. Add __buffer__ slot t... | Matti Picus | 2016-08-20 | 1 | -0/+4 |
|/ |
|
* | Backport space.newbytes() and space.newunicode() from py3k and reduce the siz... | Ronan Lamy | 2016-06-29 | 1 | -7/+3 |
* | Improve CPython compatibility of 'is'. Now 'x is y' is guaranteed | Armin Rigo | 2016-06-13 | 1 | -2/+17 |
* | Make the buffer protocol something anyone can opt into, not just str/buffer. | Devin Jeanpierre | 2016-05-16 | 1 | -1/+1 |
* | merge oefmt (b974474) oefmt pypy/{objspace,tool}/ | Philip Jenvey | 2016-05-02 | 1 | -2/+2 |
|\ |
|
| * | oefmt pypy/{objspace,tool}/ | Philip Jenvey | 2016-05-01 | 1 | -2/+2 |
* | | Don't use deprecated except clause syntax (pypy/) | Ronan Lamy | 2016-05-02 | 1 | -1/+1 |
|/ |
|
* | Remove 'sharesmallstr' | Armin Rigo | 2016-04-25 | 1 | -17/+0 |
* | remove the withprebuiltchar option and make it part of sharesmallstr | Carl Friedrich Bolz | 2016-04-21 | 1 | -11/+6 |
* | issue #1383 fixed | Carl Friedrich Bolz | 2015-10-29 | 1 | -9/+4 |
* | hg merge remove-remaining-smm | Manuel Jacob | 2014-10-21 | 1 | -26/+118 |
|\ |
|