Dan Villiom Podlaski Christiansen pushed to branch 
topic/py3.7/experimenting-with-the-build-in-3.7 at PyPy / pypy


Commits:
8e2514e4 by Matti Picus at 2020-09-24T08:51:01+03:00
remove incompatible info argument from time.*() interfaces, provide alternative

--HG--
branch : py3.7

- - - - -
17bfbe9c by Matti Picus at 2020-09-24T09:09:29+03:00
mrege heads, discarding mistaken commits

--HG--
branch : py3.7

- - - - -
6f0c9e1e by Matti Picus at 2020-09-24T20:40:20+03:00
typo

--HG--
branch : py3.7

- - - - -
8c306eb1 by Dan Villiom Podlaski Christiansen at 2020-09-23T12:57:09+02:00
test_newformat: try Danish locale first, as it works as expected on macOS

--HG--
branch : py3.7

- - - - -
64fe7e09 by Dan Villiom Podlaski Christiansen at 2020-09-23T13:45:57+02:00
test_time: the currently assumed ranges for time.mktime() assume linux

At least w.r.t. Python 3; negative values seem to work in Python 2.
For a comprehensive comparison of the ranges for this, see:

https://foss.heptapod.net/pypy/pypy/-/snippets/72

--HG--
branch : py3.7

- - - - -
2a2321ad by Dan Villiom Podlaski Christiansen at 2020-09-23T15:28:57+02:00
cparser: make the two NonImplementedErrors more helpful

--HG--
branch : py3.7

- - - - -
678cd362 by Dan Villiom Podlaski Christiansen at 2020-09-23T16:25:38+02:00
test_time.test_strftime_nonascii: clarify the nature of the error

I duplicated the test into explicit UTF-8/Latin-1 tests, and added a
repr() of the result. From this, it's easier to tell that the comment
is likely correct: The conversion results in mojibake.

--HG--
branch : py3.7

- - - - -
66c599ec by Dan Villiom Podlaski Christiansen at 2020-09-17T12:38:45+02:00
darwin: don't define _POSIX_C_SOURCE, as it hides e.g. getpagesize()

--HG--
branch : py3.7

- - - - -
87ebf212 by Dan Villiom Podlaski Christiansen at 2020-09-23T19:16:26+02:00
test_ffi_backend: add missing #include

--HG--
branch : py3.7

- - - - -
737733b9 by Dan Villiom Podlaski Christiansen at 2020-09-17T12:55:34+02:00
fix inconsistent #ifdef's surrounding get_vmprof_stack()

--HG--
branch : py3.7

- - - - -
574a7a87 by Dan Villiom Podlaski Christiansen at 2020-09-23T23:48:00+02:00
rposix: implement sendfile on darwin (and freebsd?)

--HG--
branch : py3.7

- - - - -
efc59c02 by Dan Villiom Podlaski Christiansen at 2020-09-22T10:58:58+02:00
darwin: use and save MACOSX_DEPLOYMENT_TARGET from environment, if set

--HG--
branch : py3.7

- - - - -
b11bbb5f by Dan Villiom Podlaski Christiansen at 2020-09-23T19:18:29+02:00
rtime: now that MACOSX_DEPLOYMENT_TARGET works, use proper check for 
clock_gettime()

--HG--
branch : py3.7

- - - - -
8de293e3 by Dan Villiom Podlaski Christiansen at 2020-09-23T20:00:59+02:00
testrunner: allow specifying cherrypicked tests on the command line

--HG--
branch : py3.7

- - - - -
c887336e by Dan Villiom Podlaski Christiansen at 2020-09-23T20:01:10+02:00
testrunner: add --fail-fast argument

--HG--
branch : py3.7

- - - - -
d6d3cefb by Dan Villiom Podlaski Christiansen at 2020-09-23T20:51:12+02:00
test_recompile: fix test

--HG--
branch : py3.7

- - - - -
641e30fc by Dan Villiom Podlaski Christiansen at 2020-09-23T21:28:14+02:00
test_recompiler: xfail the long double test

This fails on both Darwin/x86-64 and Linux/ARM64, and AFAICT the
relevant 'shape', 'g', isn't defined anywhere.

--HG--
branch : py3.7

- - - - -
dfe19226 by Dan Villiom Podlaski Christiansen at 2020-09-17T12:56:22+02:00
darwin: strlen() is in <string.h>

--HG--
branch : py3.7

- - - - -
8f25fbe8 by Dan Villiom Podlaski Christiansen at 2020-09-17T14:17:03+02:00
rvmprof: avoid missing prototype, which is an error in Clang 11

--HG--
branch : py3.7

- - - - -


25 changed files:

- Makefile
- dotviewer/test/test_interactive.py
- dotviewer/test/test_interactive_unicode.py
- lib-python/3/subprocess.py
- pypy/bin/pyinteractive.py
- pypy/goal/targetpypystandalone.py
- pypy/interpreter/app_main.py
- pypy/interpreter/test/test_code.py
- pypy/interpreter/test/test_module.py
- pypy/module/__pypy__/moduledef.py
- pypy/module/_cffi_backend/test/test_re_python.py
- pypy/module/_frozen_importlib/moduledef.py
- pypy/module/__pypy__/initpath.py → pypy/module/sys/initpath.py
- pypy/module/sys/moduledef.py
- pypy/module/sys/state.py
- pypy/module/__pypy__/test/test_initpath.py → 
pypy/module/sys/test/test_initpath.py
- pypy/module/sys/test/test_sysmodule.py
- pypy/module/time/app_time.py
- pypy/module/time/interp_time.py
- pypy/module/time/moduledef.py
- rpython/config/config.py
- rpython/rlib/rposix.py
- rpython/rlib/rvmprof/src/shared/vmprof_common.h
- rpython/translator/test/rpystone.py
- rpython/translator/test/rpystone_newstyle.py


View it on GitLab: 
https://foss.heptapod.net/pypy/pypy/-/compare/e9248018b66c3f8fe5a4a3b237c92d0b8e2da31a...8f25fbe88edfadd18ad595742a7f428eb3d341c1

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


_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to