Author: fijal
Branch: unicode-utf8
Changeset: r93087:3e5acb0a1e81
Date: 2017-11-20 11:13 +0100
http://bitbucket.org/pypy/pypy/changeset/3e5acb0a1e81/
Log:start working on more obscure codecs and completely remove hacks
that go via UCS4 from unicodehelper. Now unicodehelper no longer
Author: Armin Rigo
Branch: unicode-utf8
Changeset: r93088:0a3c81c3f67d
Date: 2017-11-20 11:44 +0100
http://bitbucket.org/pypy/pypy/changeset/0a3c81c3f67d/
Log:Rename this directory to avoid name conflict with "rutf8.py"
diff --git a/rpython/rlib/rutf8/capi.py b/rpython/rlib/fastutf8/capi.py
Author: fijal
Branch: unicode-utf8
Changeset: r93089:e4a80363506c
Date: 2017-11-20 11:52 +0100
http://bitbucket.org/pypy/pypy/changeset/e4a80363506c/
Log:in progress
diff --git a/pypy/interpreter/test/test_unicodehelper.py
b/pypy/interpreter/test/test_unicodehelper.py
--- a/pypy/interpreter/
Author: fijal
Branch: unicode-utf8
Changeset: r93090:78c8a9571b3d
Date: 2017-11-20 11:53 +0100
http://bitbucket.org/pypy/pypy/changeset/78c8a9571b3d/
Log:merge
diff --git a/rpython/rlib/rutf8/capi.py b/rpython/rlib/fastutf8/capi.py
rename from rpython/rlib/rutf8/capi.py
rename to rpython/rlib
Author: fijal
Branch: unicode-utf8
Changeset: r93091:4668380f4c79
Date: 2017-11-20 13:56 +0100
http://bitbucket.org/pypy/pypy/changeset/4668380f4c79/
Log:* Improve ascii/utf8 codecs and unicode escape
* Raise instead of looping infinitely when errorhandler returns
nonsense
dif
Author: stian
Branch: math-improvements
Changeset: r93092:e6c9af023bc5
Date: 2017-11-20 14:19 +0100
http://bitbucket.org/pypy/pypy/changeset/e6c9af023bc5/
Log:Test and fix for int rbinop overflow to long, also add a deeper test
for int_floordiv
diff --git a/pypy/objspace/std/intobject
Author: stian
Branch: math-improvements
Changeset: r93093:89a762f37f25
Date: 2017-11-20 14:32 +0100
http://bitbucket.org/pypy/pypy/changeset/89a762f37f25/
Log:Add test for overflow with regular binops too, now there should be
test for all changes to intobject
diff --git a/pypy/objspac
Author: stian
Branch: math-improvements
Changeset: r93094:9291ee92df89
Date: 2017-11-20 15:01 +0100
http://bitbucket.org/pypy/pypy/changeset/9291ee92df89/
Log:Test for int_pow, test+fix for pow ValueError with third argument as
0
diff --git a/pypy/objspace/std/test/test_longobject.py
Author: stian
Branch: math-improvements
Changeset: r93095:6ba5b9334842
Date: 2017-11-20 15:08 +0100
http://bitbucket.org/pypy/pypy/changeset/6ba5b9334842/
Log:Typo in comment
diff --git a/rpython/rlib/rbigint.py b/rpython/rlib/rbigint.py
--- a/rpython/rlib/rbigint.py
+++ b/rpython/rlib/rbigin
Author: fijal
Branch: unicode-utf8
Changeset: r93096:d17afc06eedf
Date: 2017-11-20 15:15 +0100
http://bitbucket.org/pypy/pypy/changeset/d17afc06eedf/
Log:fixes
diff --git a/pypy/interpreter/test/test_unicodehelper.py
b/pypy/interpreter/test/test_unicodehelper.py
--- a/pypy/interpreter/test/t
Author: Matti Picus
Branch:
Changeset: r93097:d632e9ca79ae
Date: 2017-11-20 17:09 +0200
http://bitbucket.org/pypy/pypy/changeset/d632e9ca79ae/
Log:call register_code to profile functions, cleanup
diff --git a/rpython/rlib/rvmprof/test/test_rvmprof.py
b/rpython/rlib/rvmprof/test/test_rvmpro
Author: fijal
Branch: unicode-utf8
Changeset: r93098:d18dd16d58c7
Date: 2017-11-20 16:31 +0100
http://bitbucket.org/pypy/pypy/changeset/d18dd16d58c7/
Log:silence a warning on OS X
diff --git a/rpython/rlib/rposix.py b/rpython/rlib/rposix.py
--- a/rpython/rlib/rposix.py
+++ b/rpython/rlib/rpos
Author: fijal
Branch:
Changeset: r93099:6c9c3791d06a
Date: 2017-11-20 16:31 +0100
http://bitbucket.org/pypy/pypy/changeset/6c9c3791d06a/
Log:silence a warning on OS X
diff --git a/rpython/rlib/rposix.py b/rpython/rlib/rposix.py
--- a/rpython/rlib/rposix.py
+++ b/rpython/rlib/rposix.py
@@ -18
Author: fijal
Branch:
Changeset: r93100:21fd35c44d66
Date: 2017-11-20 16:42 +0100
http://bitbucket.org/pypy/pypy/changeset/21fd35c44d66/
Log:merge
diff --git a/rpython/annotator/annrpython.py b/rpython/annotator/annrpython.py
--- a/rpython/annotator/annrpython.py
+++ b/rpython/annotator/annr
Author: fijal
Branch: unicode-utf8
Changeset: r93101:f074b4987d57
Date: 2017-11-20 16:54 +0100
http://bitbucket.org/pypy/pypy/changeset/f074b4987d57/
Log:fixes until we get to formatting problems
diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py
--- a/pypy/inter
Author: Ronan Lamy
Branch: py3.5
Changeset: r93102:feaba8e9bb0a
Date: 2017-11-20 18:34 +
http://bitbucket.org/pypy/pypy/changeset/feaba8e9bb0a/
Log:Bug-for-bug compatibility (and performance optimisation) in
BufferedReader.readinto1()
diff --git a/pypy/module/_io/interp_bufferedi
Author: Ronan Lamy
Branch: py3.5
Changeset: r93103:a5d1206f11e4
Date: 2017-11-20 18:49 +
http://bitbucket.org/pypy/pypy/changeset/a5d1206f11e4/
Log:Remove comment: this test is not supposed to fail any more
diff --git a/lib-python/3/test/test_io.py b/lib-python/3/test/test_io.py
--- a/li
Author: Ronan Lamy
Branch: py3.5
Changeset: r93104:5c2561dd0c89
Date: 2017-11-20 19:06 +
http://bitbucket.org/pypy/pypy/changeset/5c2561dd0c89/
Log:Fix tests to match PyPy behaviour
diff --git a/lib-python/3/test/test_pydoc.py b/lib-python/3/test/test_pydoc.py
--- a/lib-python/3/test/tes
Author: Ronan Lamy
Branch: py3.5
Changeset: r93105:a84f8ceb8740
Date: 2017-11-20 19:24 +
http://bitbucket.org/pypy/pypy/changeset/a84f8ceb8740/
Log:Skip tracemalloc tests
diff --git a/lib-python/3/test/test_tracemalloc.py
b/lib-python/3/test/test_tracemalloc.py
--- a/lib-python/3/test/t
Author: fijal
Branch: unicode-utf8
Changeset: r93106:b2f3bd9151c0
Date: 2017-11-20 23:05 +0100
http://bitbucket.org/pypy/pypy/changeset/b2f3bd9151c0/
Log:work on formatting
diff --git a/pypy/interpreter/unicodehelper.py
b/pypy/interpreter/unicodehelper.py
--- a/pypy/interpreter/unicodehelper
Author: Ronan Lamy
Branch: py3.5
Changeset: r93107:3e868c28555c
Date: 2017-11-21 01:59 +
http://bitbucket.org/pypy/pypy/changeset/3e868c28555c/
Log:hg merge default
diff --git a/lib-python/2.7/test/test_urllib2net.py
b/lib-python/2.7/test/test_urllib2net.py
--- a/lib-python/2.7/test/tes
Author: Ronan Lamy
Branch: py3.5
Changeset: r93108:ecfbd8f62994
Date: 2017-11-21 05:32 +
http://bitbucket.org/pypy/pypy/changeset/ecfbd8f62994/
Log:Do not use PyUnicode_Check in PyUnicode_AS_UNICODE, ever
This macro may be used to fill in an uninitialised, unrealised
unic
22 matches
Mail list logo