Ronan Lamy pushed to branch branch/hpy at PyPy / pypy
Commits:
dde3bb1e by Armin Rigo at 2020-04-18T09:08:30+02:00
Redo what's in the issue-3211-debug branch, now in a more definitive way
--HG--
branch : fix-windows-utf8
- - - - -
d7b37c8f by Armin Rigo at 2020-04-18T09:30:05+02:00
fix os.listdir() on Windows with unicode file names
--HG--
branch : fix-windows-utf8
- - - - -
32676287 by Armin Rigo at 2020-04-19T11:25:30+02:00
Oops, fix
--HG--
branch : fix-windows-utf8
- - - - -
debbbfa1 by Armin Rigo at 2020-04-19T11:28:06+02:00
add a test
--HG--
branch : fix-windows-utf8
- - - - -
7ff15cb0 by Matti Picus at 2020-07-12T11:35:06+03:00
allow codec errorhandlers to modify exc.object
--HG--
branch : exc.object
- - - - -
a2b83949 by Matti Picus at 2020-07-12T18:51:54+03:00
implement PyUnicode_{En,De}codeLocale; change locale.py to use utf8
--HG--
branch : locale-encode-decode
- - - - -
375bfa17 by Yannick Jadoul at 2020-07-13T01:17:58+02:00
Fix handling of double braces in f-strings, after bpo-29104 implementation
--HG--
branch : py3.6
- - - - -
d29ee619 by Matti Picus at 2020-07-13T22:17:46+03:00
add missing constantns for win32
--HG--
branch : py3.6
- - - - -
c8f9913f by Armin Rigo at 2020-07-14T10:31:39+02:00
hg merge py3.6
--HG--
branch : fix-windows-utf8
- - - - -
aa1c90a3 by Armin Rigo at 2020-07-14T10:35:13+02:00
Partial merge of the fix-windows-utf8 branch.
Drops the changes to the listdir() implementation, which have probably
been redone better in py3.6. Keeps the test and the unicode checking
logic.
--HG--
branch : py3.6
- - - - -
ce59b886 by Armin Rigo at 2020-07-14T10:35:42+02:00
merge heads
--HG--
branch : py3.6
- - - - -
de67fa57 by Matti Picus at 2020-07-14T12:18:23+03:00
document merged branch
--HG--
branch : py3.6
- - - - -
6cdb79e8 by Matti Picus at 2020-07-14T20:24:50+03:00
fix translation
--HG--
branch : locale-encode-decode
- - - - -
f355fd76 by Matti Picus at 2020-07-14T17:26:44+00:00
Merge branch 'topic/py3.6/fix-fstring-double-braces' into
'branch/py3.6'
Fix handling of double braces in f-strings, after bpo-29104 implementation
See merge request pypy/pypy!739
--HG--
branch : py3.6
- - - - -
fbfc8975 by Matti Picus at 2020-07-15T00:39:43+03:00
remove function deprecated in python3.3, pytest.skip does not work in -A
--HG--
branch : py3.6
- - - - -
3adfab2f by Matti Picus at 2020-07-15T12:21:38+03:00
close branch to be merged
--HG--
branch : locale-encode-decode
- - - - -
8e37181e by Matti Picus at 2020-07-15T16:51:34+03:00
merge locale-encode-decode which adds PyUnicode_{En,De}codeLocale and refactors
locale.py
--HG--
branch : py3.6
- - - - -
3d31b618 by Ronan Lamy at 2020-07-15T18:13:37+01:00
rm commented code
--HG--
branch : hpy
- - - - -
63b38f56 by Ronan Lamy at 2020-07-15T18:22:29+01:00
make sure that _hpy_universal's conftest doesn't disrupt -D tests
--HG--
branch : hpy
- - - - -
19794f38 by Matti Picus at 2020-07-15T23:31:02+03:00
merge py3.6 into branch
--HG--
branch : exc.object
- - - - -
7cf92eb4 by Matti Picus at 2020-07-15T23:33:46+03:00
close branch to be merged
--HG--
branch : exc.object
- - - - -
fcfd9557 by Matti Picus at 2020-07-15T23:35:10+03:00
merge exc.object which allows an errorhandler to modify the underlying object
--HG--
branch : py3.6
- - - - -
1185db4e by Matti Picus at 2020-07-16T08:07:27+03:00
fix more errorhandler signature changes
--HG--
branch : py3.6
- - - - -
3fc61222 by Matti Picus at 2020-07-16T11:55:53+03:00
fix import
--HG--
branch : py3.6
- - - - -
5e8113c4 by Matti Picus at 2020-07-16T12:31:04+03:00
issue 3269: do not import platform at startup
--HG--
branch : py3.6
- - - - -
ee9a1e26 by Matti Picus at 2020-07-16T10:46:58+03:00
add test that fails on windows, causes failures on numpy
--HG--
branch : py3.6
- - - - -
94d5c94d by Matti Picus at 2020-07-16T15:01:32+03:00
extend test
--HG--
branch : py3.6
- - - - -
fe4bc16a by Ronan Lamy at 2020-07-16T15:35:37+01:00
hg merge py3.6
--HG--
branch : hpy
- - - - -
23 changed files:
- extra_tests/ctypes_tests/test_commethods.py
- + extra_tests/test_startup.py
- lib_pypy/_sysconfigdata.py
- pypy/doc/whatsnew-pypy3-head.rst
- pypy/interpreter/astcompiler/fstring.py
- pypy/interpreter/test/test_unicodehelper.py
- pypy/interpreter/unicodehelper.py
- pypy/module/_codecs/interp_codecs.py
- pypy/module/_codecs/locale.py
- pypy/module/_codecs/locale_codec.c
- pypy/module/_codecs/locale_codec.h
- pypy/module/_codecs/test/test_codecs.py
- pypy/module/_codecs/test/test_locale.py
- pypy/module/_hpy_universal/test/conftest.py
- pypy/module/_multibytecodec/c_codecs.py
- pypy/module/cpyext/test/test_unicodeobject.py
- pypy/module/cpyext/unicodeobject.py
- pypy/module/posix/moduledef.py
- pypy/module/posix/test/test_posix2.py
- pypy/module/time/interp_time.py
- pypy/objspace/fake/objspace.py
- pypy/objspace/std/test/apptest_fstring.py
- pypy/objspace/std/unicodeobject.py
View it on GitLab:
https://foss.heptapod.net/pypy/pypy/-/compare/3a021d78ff39c2d19031a1ed34b50f404f1e376a...fe4bc16a1ef72d3e85293a0c7914a764aea3e0cb
--
View it on GitLab:
https://foss.heptapod.net/pypy/pypy/-/compare/3a021d78ff39c2d19031a1ed34b50f404f1e376a...fe4bc16a1ef72d3e85293a0c7914a764aea3e0cb
You're receiving this email because of your account on foss.heptapod.net.
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit