Matti Picus pushed to branch branch/py3.9 at PyPy / pypy


Commits:
3e3c2ba3 by Carl Friedrich Bolz-Tereick at 2022-03-30T18:20:15+02:00
merge heads

- - - - -
7fc3d607 by Ronan Lamy at 2022-03-30T19:39:08+01:00
Simplify TinyObjSpace.__init__()

- - - - -
7cf846d3 by Ronan Lamy at 2022-03-31T17:19:32+01:00
Remove obsolete script

- - - - -
4751bccc by Ronan Lamy at 2022-03-31T19:12:18+01:00
Remove direct uses of gettestobjspace() in tests

- - - - -
9cfc134f by Matti Picus at 2022-03-31T23:37:48+03:00
backport uint32 conversion of start argument in zlib.crc32 and zlib.alder32 
(issue 3717)

- - - - -
bfdb926b by Carl Friedrich Bolz-Tereick at 2022-04-01T12:24:44+02:00
#3717: fix zlib ustart handling that started being a problem for zlib v1.2.12

- - - - -
6b9bb7a0 by Carl Friedrich Bolz-Tereick at 2022-04-01T13:24:29+02:00
a few small optimizations to list sorting that make it allocate memory a bit
less aggressively. seems to give ~10% on sorting non-tiny lists of ints

- - - - -
6807390d by Carl Friedrich Bolz-Tereick at 2022-04-01T17:47:06+02:00
(Łukasz Langa, E-Paine, mgorny): bpo-42278: Use tempfile.TemporaryDirectory
rather than tempfile.mktemp in pydoc (GH-23200) (GH-28026)

(updated for Python 2.7 by Michał Górny)

- - - - -
bf50aa94 by Carl Friedrich Bolz-Tereick at 2022-04-01T17:50:53+02:00
(Miguel Brito, Łukasz Langa, Michał Górny): bpo-43124: Fix smtplib multiple
CRLF injection (GH-25987) (GH-28038)

issue #3710

- - - - -
2cb152ed by Carl Friedrich Bolz-Tereick at 2022-04-01T19:41:57+02:00
fix translation (some timsort users don't use lists at all, apparently)

- - - - -
d3390082 by Carl Friedrich Bolz-Tereick at 2022-04-04T13:32:48+02:00
fix #3700: bug in the disassembler of py3 opcodes

--HG--
branch : py3.8

- - - - -
e8017173 by Ronan Lamy at 2022-04-06T16:28:30+01:00
test cleanup

- - - - -
802a1013 by Matti Picus at 2022-04-08T13:21:00+03:00
pretend the module does not exist on non-windows

--HG--
branch : py3.8

- - - - -
36910371 by Ronan Lamy at 2022-04-08T17:03:19+01:00
Modernise test_astbuilder

--HG--
branch : py3.8

- - - - -
68b19a9a by Carl Friedrich Bolz-Tereick at 2022-04-10T18:12:40+02:00
merge default

--HG--
branch : py3.8

- - - - -
d0e5eaa3 by Ronan Lamy at 2022-04-11T15:46:56+01:00
fix missing 'space' in test_posix2

--HG--
branch : py3.8

- - - - -
e83a95c1 by Ronan Lamy at 2022-04-11T17:47:37+01:00
fix lineno for decorated functions and classes

--HG--
branch : py3.8

- - - - -
0aed87f9 by Ronan Lamy at 2022-04-11T20:38:41+01:00
Fix col_offset for decorator with empty argslist

--HG--
branch : py3.8

- - - - -
8ce169de by Carl Friedrich Bolz-Tereick at 2021-12-02T21:10:04+01:00
ouch, use KeyError in the translated version too, to make it catchable in the
caller
(grafted from 908371c8c9aec304710ca9a3b35fc2bf264c75cb)

--HG--
branch : py3.8

- - - - -
5de7e680 by Ronan Lamy at 2022-04-12T17:11:35+01:00
Fix position of AsyncWith nodes

--HG--
branch : py3.8

- - - - -
046c9a97 by Ronan Lamy at 2022-04-12T17:57:28+01:00
Fix position of AsyncFor nodes

--HG--
branch : py3.8

- - - - -
3450bb8c by Ronan Lamy at 2022-04-12T19:59:26+01:00
fix col_offset for unparenthesized generator expressions

--HG--
branch : py3.8

- - - - -
3bedc710 by Matti Picus at 2022-04-13T17:18:44+03:00
Fix order of #define to match CPython: push later to avoid confusing the 
compiler

--HG--
branch : py3.8

- - - - -
79f2628e by Matti Picus at 2022-04-13T18:18:00+03:00
refactor packaging so that conda-forge can use environment to control options

Also clean up a windows niggle where _ssl_build was doing packaging things
Also allow python3 to run make_portable

--HG--
branch : py3.8

- - - - -
2b75cfcc by Matti Picus at 2022-04-13T18:25:37+03:00
merge py3.8

--HG--
branch : py3.9

- - - - -


21 changed files:

- lib_pypy/_ssl_build.py
- lib_pypy/_winapi.py
- pypy/interpreter/interactive.py
- pypy/interpreter/test/test_zpy.py
- pypy/module/_ast/test/test_ast.py
- pypy/module/_jitlog/test/test__jitlog.py
- pypy/module/_multiprocessing/test/test_interp_semaphore.py
- pypy/module/_vmprof/test/test__vmprof.py
- pypy/module/bz2/test/test_bz2_file.py
- pypy/module/cpyext/include/object.h
- − pypy/module/cpyext/presetup.py
- pypy/module/posix/test/test_posix2.py
- pypy/module/zlib/test/test_zlib.py
- pypy/objspace/std/test/test_smalllongobject.py
- pypy/objspace/std/test/test_specialisedtupleobject.py
- pypy/objspace/std/test/test_stdobjspace.py
- pypy/tool/pytest/apptest.py
- pypy/tool/pytest/objspace.py
- pypy/tool/release/make_portable.py
- pypy/tool/release/package.py
- rpython/rlib/listsort.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/df88ba51d2add34ae9af115e031598d5ee30b0b2...2b75cfcc63bdad01e9d8ca0e8ba051885217acde

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/df88ba51d2add34ae9af115e031598d5ee30b0b2...2b75cfcc63bdad01e9d8ca0e8ba051885217acde
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