Matti Picus pushed to branch branch/py_initialize at PyPy / pypy


Commits:
a56c84b1 by Matti Picus at 2022-11-01T16:48:08+02:00
change a reference to codespeak.net

- - - - -
d307582e by Carl Friedrich Bolz-Tereick at 2022-10-29T13:10:38+02:00
those just work again (another reason why skip is worse than xfail)

- - - - -
210d4fae by Carl Friedrich Bolz-Tereick at 2022-10-29T13:27:06+02:00
turn skips into xfails, remove those that pass

- - - - -
f4e6837a by Carl Friedrich Bolz-Tereick at 2022-10-29T13:27:26+02:00
tiny warmup improvement: don't create the recentops when looking for an
existing op, only when adding one

- - - - -
bbeeedae by Carl Friedrich Bolz-Tereick at 2022-10-29T13:30:30+02:00
for INT_INVERT there is actually no need to use the pure machinery

- - - - -
972320a6 by Carl Friedrich Bolz-Tereick at 2022-10-29T13:33:12+02:00
same for float_neg: don't use pureop cache

- - - - -
9534064f by Matti Picus at 2022-10-31T13:21:58+02:00
export PyDictValues_Type, PyDictKeys_Type

--HG--
branch : py3.8

- - - - -
33c251e5 by Matti Picus at 2022-11-01T10:37:52+02:00
fix for untranslated hpy tests on windows

--HG--
branch : py3.8

- - - - -
5c63b65d by Matti Picus at 2022-11-01T10:56:51+02:00
continue the fix in 588a0c238c88

--HG--
branch : py3.8

- - - - -
9224bfd9 by Carl Friedrich Bolz-Tereick at 2022-11-01T11:44:41+01:00
make the heapcache support constants a little bit. useful for things like
global dict reads

- - - - -
0dba402b by Carl Friedrich Bolz-Tereick at 2022-11-01T14:14:09+01:00
ouch, fix metaclass syntax

--HG--
branch : py3.8

- - - - -
0c0acd77 by Matti Picus at 2022-11-01T15:32:34+02:00
skip utf8-mode checks in test_app_main

--HG--
branch : py3.8

- - - - -
21ea7244 by Matti Picus at 2022-11-01T19:38:43+02:00
back out 5051a0bafa8f, it breaks pip

--HG--
branch : py3.8

- - - - -
aa7a99a1 by Carl Friedrich Bolz-Tereick at 2022-11-01T20:53:32+01:00
turn boxes into consts in the frontend after guard_true/false

- - - - -
8ecf9051 by Matti Picus at 2022-11-01T23:53:26+02:00
cleanup imports

--HG--
branch : py3.8

- - - - -
029e9818 by Matti Picus at 2022-11-02T00:06:24+02:00
use c_tp_name even for heap types

See https://bugs.python.org/issue22079 and the solution in cython from 2017
https://github.com/cython/cython/pull/1927#pullrequestreview-70799465
If we, like CPython turn on CYTHON_USE_TYPE_SPECS then the cython hack goes away

--HG--
branch : py3.8

- - - - -
0853419a by Matti Picus at 2022-11-02T21:06:13+02:00
tweak the "getting started" page

- - - - -
f3375732 by Matti Picus at 2022-11-03T09:12:16+02:00
merge default

--HG--
branch : py3.8

- - - - -
363af888 by Matti Picus at 2022-11-03T09:16:10+02:00
mergepy3.8

--HG--
branch : py_initialize

- - - - -
15178c2f by Matti Picus at 2022-11-03T15:51:30+02:00
add a helper to use distutils/setuptools to build an exe from c code

--HG--
branch : py_initialize

- - - - -
a163282d by Matti Picus at 2022-11-03T16:16:44+02:00
add Py_SetProgramName

--HG--
branch : py_initialize

- - - - -
f7e078a6 by Matti Picus at 2022-11-03T16:18:04+02:00
add Py_Finalize, copy what app_main.run_toplevel does. Someday we should do 
more at shutdown

--HG--
branch : py_initialize

- - - - -
369f9fe6 by Matti Picus at 2022-11-03T16:58:27+02:00
implement Py_DecodeLocale, Py_EncodeLocale

--HG--
branch : py_initialize

- - - - -


25 changed files:

- extra_tests/test_structseq.py
- lib-python/3/Programs/README
- + lib-python/3/Programs/build_exes.py
- lib-python/3/sysconfig.py
- lib_pypy/_sysconfigdata.py
- pypy/interpreter/test/test_app_main.py
- pypy/module/_hpy_universal/_vendored/hpy/devel/__init__.py
- pypy/module/cpyext/api.py
- pypy/module/cpyext/cdatetime.py
- pypy/module/cpyext/pylifecycle.py
- pypy/module/cpyext/pythonrun.py
- pypy/module/cpyext/state.py
- pypy/module/cpyext/typeobject.py
- pypy/module/cpyext/unicodeobject.py
- pypy/module/pypyjit/test_pypy_c/test_string.py
- rpython/doc/getting-started.rst
- rpython/jit/metainterp/heapcache.py
- rpython/jit/metainterp/optimizeopt/pure.py
- rpython/jit/metainterp/optimizeopt/rewrite.py
- rpython/jit/metainterp/optimizeopt/test/test_optimizebasic.py
- rpython/jit/metainterp/optimizeopt/test/test_optimizeopt.py
- rpython/jit/metainterp/pyjitpl.py
- rpython/jit/metainterp/test/test_heapcache.py
- rpython/jit/metainterp/test/test_tracingopts.py
- rpython/translator/goal/bpnn.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/37aa256f9de4baf954e0d055b31ff22053d88013...369f9fe6d848e83eaa8a190ac18236f0c25ef71e

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/37aa256f9de4baf954e0d055b31ff22053d88013...369f9fe6d848e83eaa8a190ac18236f0c25ef71e
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