Armin Rigo pushed to branch branch/issue-3211-debug at PyPy / pypy
Commits: 0c071b0a by Matti Picus at 2020-04-07T23:18:53+03:00 merge default --HG-- branch : py3.6 - - - - - 56d8e6b0 by Matti Picus at 2020-04-10T15:31:17+03:00 test, fix tm_gmtoff and tm_zone on win32 to be like CPython --HG-- branch : py3.6 - - - - - fc40f10f by Matti Picus at 2020-04-11T23:26:58+03:00 fix test --HG-- branch : py3.6 - - - - - c812613b by Carl Friedrich Bolz-Tereick at 2020-04-11T23:57:09+02:00 merge default --HG-- branch : py3.6 - - - - - 5e7a51dd by Carl Friedrich Bolz-Tereick at 2020-04-11T23:57:45+02:00 merge heads --HG-- branch : py3.6 - - - - - 05544369 by Matti Picus at 2020-04-12T09:37:55+03:00 test, fix sock.type difference between python2 and python3 --HG-- branch : py3.6 - - - - - 3d9e9a17 by Matti Picus at 2020-04-13T17:50:52+03:00 unskip some stdlib tests, start to fix for issue 3209 --HG-- branch : py3.6 - - - - - fbbe0671 by Carl Friedrich Bolz-Tereick at 2020-03-22T17:23:16+01:00 fix opening of Connection with isolation_level=None in the constructor (grafted from 9c27af1d34e9) --HG-- branch : py3.6 - - - - - 5ae1bcb2 by Carl Friedrich Bolz-Tereick at 2020-04-04T15:28:44+02:00 use more "official" methods on the W_UnicodeObject to do conversion --HG-- branch : optimize-sre-unicode - - - - - e78e6b4e by Carl Friedrich Bolz-Tereick at 2020-04-04T15:38:35+02:00 reuse the string we already have, no need to re-wrap it --HG-- branch : optimize-sre-unicode - - - - - 77b7bc5f by Carl Friedrich Bolz-Tereick at 2020-04-04T15:59:01+02:00 add an ascii optimization: for ascii unicode strings, use the much faster regular byte matching engine --HG-- branch : optimize-sre-unicode - - - - - 009bd570 by Carl Friedrich Bolz-Tereick at 2020-04-04T16:36:04+02:00 use an ascii-fastpath for getlower and getupper --HG-- branch : optimize-sre-unicode - - - - - 3743aefe by Carl Friedrich Bolz-Tereick at 2020-04-04T21:23:43+02:00 write getlower/upper_ascii in a branch-free way to get less bridges (note that the multiplication * (ord('a') - ord('A')) actually turns into a shift by 5, since that is 32) --HG-- branch : optimize-sre-unicode - - - - - 7d8b39af by Carl Friedrich Bolz-Tereick at 2020-04-04T21:29:02+02:00 test for f0dd6cd6eec2 --HG-- branch : optimize-sre-unicode - - - - - f07956ea by Carl Friedrich Bolz-Tereick at 2020-04-05T13:19:44+02:00 merge default --HG-- branch : optimize-sre-unicode - - - - - 4e2d67a5 by Carl Friedrich Bolz-Tereick at 2020-04-05T16:38:01+02:00 move the flags from the contexts to the CompiledPatterns --HG-- branch : optimize-sre-unicode - - - - - c209237d by Carl Friedrich Bolz-Tereick at 2020-04-05T16:38:58+02:00 oops, this is no longer needed --HG-- branch : optimize-sre-unicode - - - - - 7ab0e37a by Matti Picus at 2020-04-07T08:20:19+03:00 Added tag release-pypy2.7-v7.3.1rc3 for changeset d0d41085a83c - - - - - 3521c9ae by Matti Picus at 2020-04-07T08:20:41+03:00 Added tag release-pypy3.6-v7.3.1rc3 for changeset 2ad108f17bdb - - - - - 0d69826d by Matti Picus at 2020-04-07T23:16:25+03:00 attempt at more compatibility with sysconfig.get_config_vars('VERSION') - - - - - 1c2a9489 by Matti Picus at 2020-04-07T23:28:10+03:00 update release note for latest changes - - - - - 8417cb73 by Matti Picus at 2020-04-08T07:49:15+03:00 back 18d48fe34950, the problem is distutils.sysconfig not sysconfig - - - - - a995c2d6 by Matti Picus at 2020-04-08T07:54:08+03:00 add some distutils.sysconfig variables for compatibility on win32 - - - - - eb51c742 by Matti Picus at 2020-04-10T14:12:29+03:00 prove that PyObject_SetAttrString works with __getitem__ (working on pybind11 issues) - - - - - 49ea27e4 by Matti Picus at 2020-04-10T15:38:12+03:00 Added tag release-pypy3.6-v7.3.1 for changeset 2ad108f17bdb - - - - - c8377db7 by Matti Picus at 2020-04-10T15:38:36+03:00 Added tag release-pypy2.7-v7.3.1 for changeset d0d41085a83c - - - - - 3bf5aece by Matti Picus at 2020-04-10T15:49:41+03:00 update script for release - - - - - 024cbd9a by Matti Picus at 2020-04-10T16:05:15+03:00 fix number of new contributors - - - - - 2e80750f by Carl Friedrich Bolz-Tereick at 2020-04-10T15:41:44+02:00 merge default --HG-- branch : optimize-sre-unicode - - - - - d21a77f6 by Carl Friedrich Bolz-Tereick at 2020-04-10T15:43:16+02:00 document branch --HG-- branch : optimize-sre-unicode - - - - - c5bf86cd by Carl Friedrich Bolz-Tereick at 2020-04-10T15:44:58+02:00 merge optimize-sre-unicode: speed up the performance of matching unicode strings in the sre engine: - there is a fast path for the case where the whole string is ASCII - case-insensitive matching of ASCII characters is much faster both for unicode and bytes matching - - - - - 4d0d43d4 by Carl Friedrich Bolz-Tereick at 2020-04-10T15:46:44+02:00 move the rsre constants into their own file (this is in preparation for eventually supporting 3.7's sre engine) - - - - - acb85a41 by Carl Friedrich Bolz-Tereick at 2020-04-10T20:32:33+02:00 a few more explicit utf-8 based unicode tests - - - - - 8b11ef05 by Armin Rigo at 2020-04-11T21:41:26+02:00 Fix comments - - - - - 5113a5ca by Matti Picus at 2020-04-11T23:17:59+03:00 close merged branch --HG-- branch : optimize-sre-unicode - - - - - 3acee23f by Matti Picus at 2020-04-11T23:18:12+03:00 remerge closed branch - - - - - bd5eadda by Matti Picus at 2020-04-11T23:26:21+03:00 fix test - - - - - cdb50b67 by Armin Rigo at 2020-04-14T19:42:21+02:00 update old stuff in the FAQ - - - - - 7090125f by Armin Rigo at 2020-04-16T22:53:32+02:00 update to cffi/4a4a9e8abe97 - - - - - 48eeb2fc by Matti Picus at 2020-04-17T10:29:22+03:00 add jobs control, from issue 3187 - - - - - b031b36d by Matti Picus at 2020-04-17T10:33:24+03:00 merge default --HG-- branch : py3.6 - - - - - ada65f78 by Armin Rigo at 2020-04-17T19:14:19+02:00 Add a skipped test, which probably also fails on CPython on systems without wcsftime() --HG-- branch : py3.6 - - - - - 6c31bf48 by Armin Rigo at 2020-04-17T19:41:40+02:00 Windows: fix time.tzname --HG-- branch : py3.6 - - - - - ed35fd97 by Armin Rigo at 2020-04-17T19:46:00+02:00 hg merge py3.6 --HG-- branch : issue-3211-debug - - - - - 30 changed files: - .hgtags - Makefile - extra_tests/cffi_tests/cffi0/backend_tests.py - extra_tests/ctypes_tests/test_structures.py - extra_tests/test_sqlite3.py - lib-python/3/ctypes/test/test_pep3118.py - lib_pypy/_ctypes/array.py - lib_pypy/_sqlite3.py - lib_pypy/_sysconfigdata.py - lib_pypy/cffi/_embedding.h - pypy/doc/faq.rst - pypy/doc/release-v7.3.1.rst - pypy/doc/whatsnew-head.rst - pypy/module/_socket/interp_socket.py - pypy/module/_socket/test/test_sock_app.py - pypy/module/_sre/interp_sre.py - pypy/module/_sre/test/test_app_sre.py - pypy/module/_sre/test/test_sre_buf.py - pypy/module/cpyext/test/test_sequence.py - pypy/module/time/interp_time.py - pypy/module/time/test/test_time.py - pypy/tool/release/repackage.sh - rpython/jit/metainterp/optimizeopt/intdiv.py - rpython/rlib/rsre/rpy/_sre.py - rpython/rlib/rsre/rsre_char.py - + rpython/rlib/rsre/rsre_constants.py - rpython/rlib/rsre/rsre_core.py - rpython/rlib/rsre/rsre_re.py - rpython/rlib/rsre/rsre_utf8.py - rpython/rlib/rsre/test/support.py View it on GitLab: https://foss.heptapod.net/pypy/pypy/compare/a113b1926ed337f0617c0e940f07bf700e247236...ed35fd978768d2d7f584cca9a65b4539e47fe089 --- View it on GitLab: https://foss.heptapod.net/pypy/pypy/compare/a113b1926ed337f0617c0e940f07bf700e247236...ed35fd978768d2d7f584cca9a65b4539e47fe089 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
