Carl Friedrich Bolz-Tereick pushed to branch 
branch/rbigint-fromstr-subquadratic at PyPy / pypy


Commits:
3d4e6736 by Alexander Schremmer at 2022-09-21T13:48:44+02:00
(cfbolz, xoraxax) Implement bit_count for rbigint.

- - - - -
51f09300 by Carl Friedrich Bolz-Tereick at 2022-09-21T13:49:59+02:00
remove unused variable

- - - - -
313cc752 by Carl Friedrich Bolz-Tereick at 2022-09-21T14:32:23+02:00
(cfbolz, xoraxax): check the length of a to-be-unpacked list *before* we make
the list copy

- - - - -
880b1052 by Carl Friedrich Bolz-Tereick at 2022-09-21T14:53:50+02:00
(cfbolz, xoraxax): make sure that tracing from GUARD_ALWAYS_FAILS makes
progress, and doesn't start from an earlier bytecode by preventing guard 
resume
data sharing for it

- - - - -
744a9f02 by Julian Berman at 2022-09-23T12:51:40+02:00
Backport the httpserver security fix from #854 to PyPy2.7

--HG--
branch : http_server_vuln_fix-pypy2

- - - - -
637ae94d by Carl Friedrich Bolz-Tereick at 2022-09-23T11:05:08+00:00
Merge branch 'branch/http_server_vuln_fix-pypy2' into 
'branch/default'

Backport the httpserver security fix from #854 to PyPy2.7

See merge request pypy/pypy!855

- - - - -
6170c43a by Julian Berman at 2022-09-23T15:18:39+02:00
(cfbolz, julian): skip a test on macos which relies on symbolic comparison when 
untranslated

- - - - -
bc1e00b5 by Julian Berman at 2022-09-23T15:19:52+02:00
merge heads

- - - - -
dde396a4 by Carl Friedrich Bolz-Tereick at 2022-09-24T12:35:57+02:00
oops

--HG--
branch : rbigint-fromstr-subquadratic

- - - - -
fc674e42 by Carl Friedrich Bolz-Tereick at 2022-09-24T13:22:17+02:00
save a useless multiplication by 0 in the base case

--HG--
branch : rbigint-fromstr-subquadratic

- - - - -
50615b01 by Carl Friedrich Bolz-Tereick at 2022-09-24T21:04:27+02:00
introduce accessors for size and sign

--HG--
branch : rbigint-fromstr-subquadratic

- - - - -
3efd09b8 by Matti Picus at 2022-09-24T22:35:39+03:00
use READTHEDOCE_PROJECT to build rpython or pypy rtd documentation appropriately

- - - - -
1909df15 by Matti Picus at 2022-09-24T22:41:01+03:00
fix yaml formatting

- - - - -
a654a5fa by Matti Picus at 2022-09-24T22:55:14+03:00
add debug cruft for rtd

- - - - -
3108fb95 by Matti Picus at 2022-09-24T23:02:40+03:00
I think each command line is executed in its own shell, so string them together

- - - - -
874dbadc by Matti Picus at 2022-09-24T23:23:48+03:00
split commands onto two lines

- - - - -
15849658 by Matti Picus at 2022-09-24T23:30:44+03:00
copy output

- - - - -
51d749fc by Matti Picus at 2022-09-24T23:34:51+03:00
typo

- - - - -
e1a0d456 by Matti Picus at 2022-09-24T23:43:56+03:00
mkdir before copying

- - - - -
39beb34f by Matti Picus at 2022-09-24T23:52:29+03:00
build with rtd theme

- - - - -
bcf61e64 by Matti Picus at 2022-09-25T06:34:29+03:00
add more debugging

- - - - -
955b3088 by Matti Picus at 2022-09-25T06:51:24+03:00
force theme

- - - - -
d5eee71b by Carl Friedrich Bolz-Tereick at 2022-10-05T11:42:25+02:00
remove pdb

--HG--
branch : unicode-dawg-toposort

- - - - -
b05edca7 by Carl Friedrich Bolz-Tereick at 2022-10-05T11:44:32+02:00
quick experiment: try to get rid of negative edge direction in the packed dawg
by topologically sorting it. this requires numbering the data *after* sorting

--HG--
branch : unicode-dawg-toposort

- - - - -
1d022284 by Carl Friedrich Bolz-Tereick at 2022-10-05T12:45:50+02:00
cleanup

--HG--
branch : unicode-dawg-toposort

- - - - -
904d33b6 by Carl Friedrich Bolz-Tereick at 2022-10-05T14:52:22+02:00
more cleanups

--HG--
branch : unicode-dawg-toposort

- - - - -
2ed253e5 by Carl Friedrich Bolz-Tereick at 2022-10-05T14:52:34+02:00
regen

--HG--
branch : unicode-dawg-toposort

- - - - -
71ceba70 by Carl Friedrich Bolz-Tereick at 2022-10-05T14:52:49+02:00
merge short-lived branch unicodedata-dawg-toposort:

simplify the decoding a bit by topologically sorting the DAWG to make sure that
edges always go forward in the packed string

- - - - -
92712aca by Carl Friedrich Bolz-Tereick at 2022-10-05T18:13:43+02:00
don't know what happened here

- - - - -
c80f4397 by Matti Picus at 2022-10-06T05:03:12+03:00
backport test, fix empty set contains unhashable, issue 3824

- - - - -
8e82e35e by Carl Friedrich Bolz-Tereick at 2022-10-06T15:28:13+02:00
merge default

--HG--
branch : rbigint-fromstr-subquadratic

- - - - -


25 changed files:

- .readthedocs.yaml
- lib-python/2.7/BaseHTTPServer.py
- lib-python/2.7/test/test_httpservers.py
- pypy/doc/conf.py
- pypy/doc/requirements.txt
- pypy/module/pypyjit/test_pypy_c/test_containers.py
- pypy/objspace/std/objspace.py
- pypy/objspace/std/setobject.py
- pypy/objspace/std/test/test_setobject.py
- rpython/doc/conf.py
- rpython/doc/requirements.txt
- rpython/jit/metainterp/optimizeopt/optimizer.py
- rpython/jit/metainterp/test/test_ajit.py
- rpython/jit/metainterp/test/test_tracelimit.py
- rpython/rlib/rbigint.py
- rpython/rlib/test/test_rbigint.py
- rpython/rlib/unicodedata/dawg.py
- rpython/rlib/unicodedata/generate_unicodedb.py
- rpython/rlib/unicodedata/test/test_dawg.py
- rpython/rlib/unicodedata/unicodedb_11_0_0.py
- rpython/rlib/unicodedata/unicodedb_12_1_0.py
- rpython/rlib/unicodedata/unicodedb_13_0_0.py
- rpython/rlib/unicodedata/unicodedb_3_2_0.py
- rpython/rlib/unicodedata/unicodedb_5_2_0.py
- rpython/rlib/unicodedata/unicodedb_9_0_0.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/c431c2000d38c69d9d0e1228949560f31f33ac7c...8e82e35e328295e7fbf6e39ec18f08b58d6ef90b

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/c431c2000d38c69d9d0e1228949560f31f33ac7c...8e82e35e328295e7fbf6e39ec18f08b58d6ef90b
You're receiving this email because of your account on foss.heptapod.net.


_______________________________________________
pypy-commit mailing list -- pypy-commit@python.org
To unsubscribe send an email to pypy-commit-le...@python.org
https://mail.python.org/mailman3/lists/pypy-commit.python.org/
Member address: arch...@mail-archive.com

Reply via email to