[pypy-commit] [Git][pypy/pypy][branch/threaded-code-generation] fix the way to handle W_IntObject in threadedcode tla

2022-04-13 Thread Yusuke Izawa (@3tty0n)


Yusuke Izawa pushed to branch branch/threaded-code-generation at PyPy / pypy


Commits:
9b91de25 by Yusuke Izawa at 2022-04-13T19:25:38+09:00
fix the way to handle W_IntObject in threadedcode tla

--HG--
branch : threaded-code-generation

- - - - -


2 changed files:

- rpython/jit/tl/threadedcode/object.py
- rpython/jit/tl/threadedcode/tla.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/9b91de257869ba114e0a1d9efc66759ee7117157

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/9b91de257869ba114e0a1d9efc66759ee7117157
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] Fix some error messages to match CPython (backported from py3.9)

2022-04-13 Thread Ronan Lamy (@rlamy)


Ronan Lamy pushed to branch branch/py3.8 at PyPy / pypy


Commits:
d37662af by Ronan Lamy at 2022-04-13T16:16:32+01:00
Fix some error messages to match CPython (backported from py3.9)

--HG--
branch : py3.8

- - - - -


2 changed files:

- pypy/interpreter/astcompiler/ast.py
- pypy/interpreter/astcompiler/tools/asdl_py.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/d37662af664ea08b4318dbe9fe8a9d9b19831aae

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/d37662af664ea08b4318dbe9fe8a9d9b19831aae
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] 3 commits: Fix order of #define to match CPython: push later to avoid confusing the compiler

2022-04-13 Thread Matti Picus (@mattip)


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


Commits:
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

- - - - -
0679cff5 by Matti Picus at 2022-04-13T18:26:32+03:00
merge heads

--HG--
branch : py3.8

- - - - -


4 changed files:

- lib_pypy/_ssl_build.py
- pypy/module/cpyext/include/object.h
- pypy/tool/release/make_portable.py
- pypy/tool/release/package.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/d37662af664ea08b4318dbe9fe8a9d9b19831aae...0679cff5b4cb92c0fd35c6ee86faa429747eb7cc

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/d37662af664ea08b4318dbe9fe8a9d9b19831aae...0679cff5b4cb92c0fd35c6ee86faa429747eb7cc
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


[pypy-commit] [Git][pypy/pypy][branch/py3.9] 25 commits: merge heads

2022-04-13 Thread Matti Picus (@mattip)


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] [Git][pypy/pypy][branch/py3.8] Actually match CPython error message

2022-04-13 Thread Ronan Lamy (@rlamy)


Ronan Lamy pushed to branch branch/py3.8 at PyPy / pypy


Commits:
ca792d37 by Ronan Lamy at 2022-04-13T16:30:14+01:00
Actually match CPython error message

--HG--
branch : py3.8

- - - - -


2 changed files:

- pypy/interpreter/astcompiler/ast.py
- pypy/interpreter/astcompiler/tools/asdl_py.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/ca792d3791d9f6b8b5ab438dbe166e7dcab3f9f0

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/ca792d3791d9f6b8b5ab438dbe166e7dcab3f9f0
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] Fix test (backported from 9de88aa63822)

2022-04-13 Thread Ronan Lamy (@rlamy)


Ronan Lamy pushed to branch branch/py3.8 at PyPy / pypy


Commits:
ab7405ef by Ronan Lamy at 2022-04-13T16:41:26+01:00
Fix test (backported from 9de88aa63822)

--HG--
branch : py3.8

- - - - -


1 changed file:

- lib-python/3/test/test_ast.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/ab7405ef48ceec81c6f48026d899637704699a3e

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/ab7405ef48ceec81c6f48026d899637704699a3e
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] woops, while 0: break gave an error before

2022-04-13 Thread Ronan Lamy (@rlamy)


Ronan Lamy pushed to branch branch/py3.8 at PyPy / pypy


Commits:
d5e30db0 by Carl Friedrich Bolz-Tereick at 2021-11-20T10:07:20+01:00
woops, while 0: break gave an error before
(grafted from e570096ef61042c00cc039a18868633c77060a59)

--HG--
branch : py3.8

- - - - -


2 changed files:

- pypy/interpreter/astcompiler/codegen.py
- pypy/interpreter/astcompiler/test/test_compiler.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/d5e30db05b57f6b3ddf03fff38216f5515e5e188

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/d5e30db05b57f6b3ddf03fff38216f5515e5e188
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] the flag changed (we are anyway different than CPython)

2022-04-13 Thread Ronan Lamy (@rlamy)


Ronan Lamy pushed to branch branch/py3.8 at PyPy / pypy


Commits:
4f1b65f0 by Carl Friedrich Bolz-Tereick at 2021-12-01T12:49:37+01:00
the flag changed (we are anyway different than CPython)
(grafted from 5f344a9ea1bef6ac635657eac29935a51eab6bcd)

--HG--
branch : py3.8

- - - - -


1 changed file:

- lib-python/3/test/test_code.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/4f1b65f082e2896d668453cfc5e2c2e0c04002cb

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/4f1b65f082e2896d668453cfc5e2c2e0c04002cb
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] skip implementation detail when iterating over dict with one element and deleting it

2022-04-13 Thread Ronan Lamy (@rlamy)


Ronan Lamy pushed to branch branch/py3.8 at PyPy / pypy


Commits:
5398efab by Matti Picus at 2022-02-21T13:49:27+02:00
skip implementation detail when iterating over dict with one element and 
deleting it
(grafted from c28d04f8c3ce542580f36be91ec067755b4a2f84)

--HG--
branch : py3.8

- - - - -


1 changed file:

- lib-python/3/test/test_dict.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/5398efab8272e567f357c79110e0d19e5f9587fa

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/5398efab8272e567f357c79110e0d19e5f9587fa
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] 3 commits: prefer pypy's offset over cpython's offset

2022-04-13 Thread Ronan Lamy (@rlamy)


Ronan Lamy pushed to branch branch/py3.8 at PyPy / pypy


Commits:
22113d14 by Matti Picus at 2022-01-27T18:53:46+02:00
prefer pypy's offset over cpython's offset
(grafted from d812e986607195ad3f022c9930ed04159e0afe40)

--HG--
branch : py3.8

- - - - -
9458e45c by Carl Friedrich Bolz-Tereick at 2021-11-30T19:57:02+01:00
the test is wrong here
(grafted from fac27ecb84063b788f566d58e27cbf249271f3ab)

--HG--
branch : py3.8

- - - - -
4fc6b059 by Ronan Lamy at 2022-04-13T22:09:39+01:00
Use the correct locations (as on CPython3.9)

--HG--
branch : py3.8

- - - - -


2 changed files:

- lib-python/3/test/test_fstring.py
- lib-python/3/test/test_future.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/5398efab8272e567f357c79110e0d19e5f9587fa...4fc6b059c76b180c1f36c258b4704729dd0cb08b

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/5398efab8272e567f357c79110e0d19e5f9587fa...4fc6b059c76b180c1f36c258b4704729dd0cb08b
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] Handle invalid values in _blake2 and _sha3 (backported from b47a980c23e8)

2022-04-13 Thread Ronan Lamy (@rlamy)


Ronan Lamy pushed to branch branch/py3.8 at PyPy / pypy


Commits:
9b51392b by Ronan Lamy at 2022-04-13T22:22:47+01:00
Handle invalid values in _blake2 and _sha3 (backported from b47a980c23e8)

--HG--
branch : py3.8

- - - - -


2 changed files:

- lib_pypy/_blake2/__init__.py
- lib_pypy/_sha3/__init__.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/9b51392b1f16efc9ef0cce5c1af226f1793c5dce

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/9b51392b1f16efc9ef0cce5c1af226f1793c5dce
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] struct error messages (backported from a0b17d148fb0)

2022-04-13 Thread Ronan Lamy (@rlamy)


Ronan Lamy pushed to branch branch/py3.8 at PyPy / pypy


Commits:
c473493f by Ronan Lamy at 2022-04-13T22:44:16+01:00
struct error messages (backported from a0b17d148fb0)

--HG--
branch : py3.8

- - - - -


2 changed files:

- pypy/module/struct/interp_struct.py
- pypy/module/struct/test/apptest_struct.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/c473493f726cba544fd7f3ae3a4aeadda68d8bb0

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/c473493f726cba544fd7f3ae3a4aeadda68d8bb0
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] update timeit to bring it closer to 3.9 again

2022-04-13 Thread Ronan Lamy (@rlamy)


Ronan Lamy pushed to branch branch/py3.8 at PyPy / pypy


Commits:
0ea5c22a by Carl Friedrich Bolz-Tereick at 2021-12-23T20:52:48+01:00
update timeit to bring it closer to 3.9 again
(grafted from 57b517c7ce421083b9cfcbb0e8a65ced4ae6159c)

--HG--
branch : py3.8

- - - - -


1 changed file:

- lib-python/3/timeit.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/0ea5c22a7a406517dc6c26f412eb19cf9ca2a007

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/0ea5c22a7a406517dc6c26f412eb19cf9ca2a007
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


[pypy-commit] [Git][pypy/pypy][branch/py3.8] this runs on python2 on the buildbot, cannot use f strings

2022-04-13 Thread Matti Picus (@mattip)


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


Commits:
55ded8e8 by Matti Picus at 2022-04-14T08:34:38+03:00
this runs on python2 on the buildbot, cannot use f strings

--HG--
branch : py3.8

- - - - -


1 changed file:

- pypy/tool/release/package.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/55ded8e8a878766e9e12574d140457ae78fd35e6

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/55ded8e8a878766e9e12574d140457ae78fd35e6
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


[pypy-commit] [Git][pypy/pypy][branch/py3.9] 15 commits: Fix some error messages to match CPython (backported from py3.9)

2022-04-13 Thread Matti Picus (@mattip)


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


Commits:
d37662af by Ronan Lamy at 2022-04-13T16:16:32+01:00
Fix some error messages to match CPython (backported from py3.9)

--HG--
branch : py3.8

- - - - -
0679cff5 by Matti Picus at 2022-04-13T18:26:32+03:00
merge heads

--HG--
branch : py3.8

- - - - -
ca792d37 by Ronan Lamy at 2022-04-13T16:30:14+01:00
Actually match CPython error message

--HG--
branch : py3.8

- - - - -
ab7405ef by Ronan Lamy at 2022-04-13T16:41:26+01:00
Fix test (backported from 9de88aa63822)

--HG--
branch : py3.8

- - - - -
d5e30db0 by Carl Friedrich Bolz-Tereick at 2021-11-20T10:07:20+01:00
woops, while 0: break gave an error before
(grafted from e570096ef61042c00cc039a18868633c77060a59)

--HG--
branch : py3.8

- - - - -
4f1b65f0 by Carl Friedrich Bolz-Tereick at 2021-12-01T12:49:37+01:00
the flag changed (we are anyway different than CPython)
(grafted from 5f344a9ea1bef6ac635657eac29935a51eab6bcd)

--HG--
branch : py3.8

- - - - -
5398efab by Matti Picus at 2022-02-21T13:49:27+02:00
skip implementation detail when iterating over dict with one element and 
deleting it
(grafted from c28d04f8c3ce542580f36be91ec067755b4a2f84)

--HG--
branch : py3.8

- - - - -
22113d14 by Matti Picus at 2022-01-27T18:53:46+02:00
prefer pypy's offset over cpython's offset
(grafted from d812e986607195ad3f022c9930ed04159e0afe40)

--HG--
branch : py3.8

- - - - -
9458e45c by Carl Friedrich Bolz-Tereick at 2021-11-30T19:57:02+01:00
the test is wrong here
(grafted from fac27ecb84063b788f566d58e27cbf249271f3ab)

--HG--
branch : py3.8

- - - - -
4fc6b059 by Ronan Lamy at 2022-04-13T22:09:39+01:00
Use the correct locations (as on CPython3.9)

--HG--
branch : py3.8

- - - - -
9b51392b by Ronan Lamy at 2022-04-13T22:22:47+01:00
Handle invalid values in _blake2 and _sha3 (backported from b47a980c23e8)

--HG--
branch : py3.8

- - - - -
c473493f by Ronan Lamy at 2022-04-13T22:44:16+01:00
struct error messages (backported from a0b17d148fb0)

--HG--
branch : py3.8

- - - - -
0ea5c22a by Carl Friedrich Bolz-Tereick at 2021-12-23T20:52:48+01:00
update timeit to bring it closer to 3.9 again
(grafted from 57b517c7ce421083b9cfcbb0e8a65ced4ae6159c)

--HG--
branch : py3.8

- - - - -
55ded8e8 by Matti Picus at 2022-04-14T08:34:38+03:00
this runs on python2 on the buildbot, cannot use f strings

--HG--
branch : py3.8

- - - - -
79a68de7 by Matti Picus at 2022-04-14T08:38:13+03:00
merge py3.8, ignoring backports

--HG--
branch : py3.9

- - - - -


1 changed file:

- pypy/tool/release/package.py


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

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