File: whatsnew-pypy2-7.3.2.rst

package info (click to toggle)
pypy3 7.3.19%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 212,236 kB
  • sloc: python: 2,098,316; ansic: 540,565; sh: 21,462; asm: 14,419; cpp: 4,451; makefile: 4,209; objc: 761; xml: 530; exp: 499; javascript: 314; pascal: 244; lisp: 45; csh: 12; awk: 4
file content (50 lines) | stat: -rw-r--r-- 1,307 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
===========================
What's new in PyPy2.7 7.3.2
===========================

.. this is a revision shortly after release-pypy-7.3.1
.. startrev: 1cae9900d598

.. branch: optimize-sre-unicode

Speed up performance of matching Unicode strings in the ``re`` module
significantly for characters that are part of ASCII.

.. branch: rpython-recvmsg_into

Refactor RSocket.xxx_into() methods and add .recvmsg_into().

.. branch: bo-fix-source-links

Fix documentation extlinks for heptapod directory schema

.. branch: py3.6 # ignore, bad merge

.. branch: ssl  # ignore, small test fix

.. branch: ctypes-stuff

Fix implementation of PEP 3118 in ctypes.

.. branch: issue3240

Use make_portable on macOS

.. branch: wb_before_move

Add ``rgc.ll_arraymove()``, as a way to shift items inside the same
array with proper GC support. Improves ``while lst: lst.pop(0)``.

.. branch: no-str-unicode-union

Remove all implicit str-unicode conversions in RPython.

.. branch: initialize_lock_timeout_on_windows

Fix uninitialized value in rlock.acquire on windows, fixes issue 3252

.. branch: jit-releaseall 

Add ``pypyjit.releaseall()`` that marks all current machine code
objects as ready to release. They will be released at the next GC (unless they
are currently in use in the stack of one of the threads).