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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
|
=================================================
PyPy v7.3.10: release of python 2.7, 3.8, and 3.9
=================================================
..
Changelog up to commit 2f9532a1155e
.. note_::
This is a pre-release announcement. When the release actually happens, it
will be announced on the `PyPy blog`_
.. _`PyPy blog`: https://pypy.org/blog
The PyPy team is proud to release version 7.3.10 of PyPy. We have some nice
speedups and bugfixes we wish to share. The release includes three different
interpreters:
- PyPy2.7, which is an interpreter supporting the syntax and the features of
Python 2.7 including the stdlib for CPython 2.7.18+ (the ``+`` is for
backported security updates)
- PyPy3.8, which is an interpreter supporting the syntax and the features of
Python 3.8, including the stdlib for CPython 3.8.15.
- PyPy3.9, which is an interpreter supporting the syntax and the features of
Python 3.9, including the stdlib for CPython 3.9.15. We have gained
confidence in the stability of this version, and are removing the "beta"
label.
The interpreters are based on much the same codebase, thus the multiple
release. This is a micro release, all APIs are compatible with the other 7.3
releases. Highlights of the release, since the release of 7.3.9 in March 2022
include:
- A release of Apple Silicon M1 arm64 versions. This work `was sponsored`_ by
an anonymous donor and is tested on our buildbots.
- Many improvements to the basic interpreter to make it 15-20% faster
- The conda-forge community `has built`_ over 1000 packages for PyPy3.8 and 3.9,
making it easier than ever to use PyPy.
- Update the packaged OpenSSL to 1.1.1s, sqlite3 to 3.39.4, and apply
applicable security fixes from CPython 3.9.15 to PyPy2.7
- Update the HPy_ backend in PyPy3.8 and PyPy3.9 to 0.0.4
We recommend updating. You can find links to download the v7.3.10 releases here:
https://pypy.org/download.html
We would like to thank our donors for the continued support of the PyPy
project. If PyPy is not quite good enough for your needs, we are available for
`direct consulting`_ work. If PyPy is helping you out, we would love to hear about
it and encourage submissions to our blog_ via a pull request
to https://github.com/pypy/pypy.org
We would also like to thank our contributors and encourage new people to join
the project. PyPy has many layers and we need help with all of them: bug fixes,
`PyPy`_ and `RPython`_ documentation improvements, or general `help`_ with making
RPython's JIT even better. Since the previous release, we have accepted
contributions from five new contributors, thanks for pitching in, and welcome
to the project!
If you are a python library maintainer and use C-extensions, please consider
making a HPy_ / CFFI_ / cppyy_ version of your library that would be performant
on PyPy.
In any case, both `cibuildwheel`_ and the `multibuild system`_ support
building wheels for PyPy.
.. _`PyPy`: index.html
.. _`RPython`: https://rpython.readthedocs.org
.. _`help`: project-ideas.html
.. _CFFI: https://cffi.readthedocs.io
.. _cppyy: https://cppyy.readthedocs.io
.. _`multibuild system`: https://github.com/matthew-brett/multibuild
.. _`cibuildwheel`: https://github.com/joerick/cibuildwheel
.. _blog: https://pypy.org/blog
.. _HPy: https://hpyproject.org/
.. _was sponsored: https://www.pypy.org/posts/2022/07/m1-support-for-pypy.html
.. _direct consulting: https://www.pypy.org/pypy-sponsors.html
.. _has built: https://www.pypy.org/posts/2022/11/pypy-and-conda-forge.html
What is PyPy?
=============
PyPy is a Python interpreter, a drop-in replacement for CPython 2.7, 3.8 and
3.9. It's fast (`PyPy and CPython 3.7.4`_ performance
comparison) due to its integrated tracing JIT compiler.
We also welcome developers of other `dynamic languages`_ to see what RPython
can do for them.
We provide binary builds for:
* **x86** machines on most common operating systems
(Linux 32/64 bits, Mac OS 64 bits, Windows 64 bits)
* 64-bit **ARM** machines running Linux (``aarch64``).
* Apple **M1 arm64** machines (``macos_arm64``).
* **s390x** running Linux
PyPy support Windows 32-bit, Linux PPC64 big- and little-endian, and Linux ARM
32 bit, but does not release binaries. Please reach out to us if you wish to
sponsor binary releases for those platforms. Downstream packagers provide
binary builds for debian, Fedora, conda, OpenBSD, FreeBSD, Gentoo, and more.
.. _`PyPy and CPython 3.7.4`: https://speed.pypy.org
.. _`dynamic languages`: https://rpython.readthedocs.io/en/latest/examples.html
Changelog
=========
Default version (2.7+)
----------------------
Bugfixes shared across versions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Fix zlib ``ustart`` handling for zlib v1.2.12 (issue 3717_)
- Backport security fixes to Python2.7
- Structseq improvements: hide ``structseqfield.__get__``, ignore any extra
keys in the dict, preserve MapDict implementation strategy as the
``__dict__``, make fields immutable and more
- Fix embedding startup code in CFFI (issue 3619_)
- Fix ``xmm`` scratch register on win64 (issue 3753_)
- Fix corner cases in method and code ``__ne__`` (issue 3759_)
- In translation, if ctypes doesn't find the ``C`` library with
``find_library('c')``, try to fallback to generic ``libc.so``. This enables
building with musl (issue 3559_)
- Unbreak string formatting with mixed bytes/unicode (issue 3802_)
- Pull in the ``http.server`` vulnerability fix from cpython-87389_
- Raise if empty set contains unhashable (issue 3824_)
- Support ``class A(_RawIOBase, BytesIO)`` (issue 3821_)
- When raising an error: don't convert random things to unicode (issue 3828_)
- Implement the ``.description`` attribute of sqlite3 cursors more carefully
(issue 3840_)
- Always use ``-fPIC`` when building shared objects on linux platforms
- Fix ``MSG_TRUNC`` socket weirdness on linux (issue 3864_)
Speedups and enhancements shared across versions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Update the HPy backend to 0.0.4
- Update CFFI to the latest HEAD (no new version was released)
- Speed up ``dict.copy`` and ``emptydict.update(dict)``
- Optimize list sorting to allocate memory a bit less aggressively. Seems
to give ~10% on sorting non-tiny lists of ``ints``
- Speed up the Python interpreter (jitted code is unchanged) by auto-generating
rpython-level shortcut methods for many special methods. This speeds up the
interpreter greatly because we don't need to lookup the special method and
don't need to go through the general call machinery at all. The effect is
comparable to CPython's type slots, but all auto-generated from ``TypeDefs``.
It only works for built-in types at this point.
- Use structs to unpack ``longlong`` instead of casting to lltype Arrays
- Speed up the interpreter by caching global and builtin lookups on the code
object
- Fix caching of reference constants in JitCodes
- Make the exception transformer not introduce calls to ``ll_issubclass``,
instead emit the correct ``int_between`` for the type check directly
- Instead of encoding the liveness of local registers in each jitcode as a dict
mapping pc to a (shared) instance of a class with three strings, do the
following: add a live instruction in the jitcode that that has as its argument
an offset into a string that compactly encodes liveness.
- Fast path for ``string[0]`` to convert a ``str`` to a ``char`` for when
``string`` is already a char
- Clean up a few single-use specialized dictionaries in RPython, this reduces
the binary size somewhat.
- Make ``list.count`` use the same fast paths as ``list.index`` (issue 3744_)
- Improve ``int.bit_length`` for the jit: expose unwrapping and rewrapping to
tracing
- Add a fast path for ``getrandbits(n)`` where ``n <= 31`` (issue 3733_)
- Remove useless ``cvt = converters.get(type(param))`` from sqlite3: it was
wrong and slowed things down
- Add two new hints to ``rlib.jit``:
- ``record_exact_value(var, const)`` tells the JIT that the box ``var`` must
contain the value ``const``.
- ``record_known_result(result, func, *args)`` is a way to encode knowledge
about the result of elidable functions. The hint means that the JIT can
assume that if ``func(*args)`` will be called later, the outcome is
``result``
Typical usecases of this are: you can express this way that functions are
inverses of each other, or that a function is idempotent. Both hints need to
be used very carefully, because getting them wrong can really lead to
miscompilation and crashes.
- Speed up ``posix.stat`` calls by directly constructing the output, avoiding a
``structseq``
- Make PyPy available for Apple M1 (arm64)
- Support JIT backend code generation
- Handle the different FFI calling conventions
- Widen support for packaging the build
- Distinguish between the two macos builds
- Set up a buildbot machine to run CI
- Add an optimization for ``uint_rshift(0, x) -> 0`` and ``uint_rshift(x, 0) ->
x``. Previously the optimization was only for ``int_rshift``
- Make it possible to ``@specialize.memo`` on ``rgc`` custom trace hooks
- Use a more subtle condition to check whether aliasing is present when doing
malloc removal in the static RPython optimizers.
- Micro-optimize ``TraceIterator.next()`` to not allocate quite so many
intermediate lists in the JIT code that walks over an encoded trace.
- Only put ``OptimizationResults`` into the list for callbacks if the callback
would actually *do* anything in the JIT optimizer.
- Small optimizations to improve tracing speed:
- Have special versions of various record functions that take a fixed number of
arguments. This makes it possible to not allocate arguments lists.
- Don't lookup constant pointers that come from the jitcode in a dictionary
again and again in opencoder.
- Make sure that ``W_Root.getclass`` does not exist in two versions, one for
``access_directly=True``, one regular
- Two improvements to space operations:
- rewrite the translation-time lookup caching to work on the *RPython* class
instead of the ``W_TypeObjects``. This makes the latter smaller and saves us
having to call ``space.type(w_obj)`` first.
- fix caching of binary ops by using a ``@specialize``
- Clean up the number of ``w_obj.getclass`` variants in mapdict
- Use ``append_char`` where appropriate in unicode string builder
- Use a fast-path for ``str.encode("utf-8")`` (issue 3756_)
- Optimize ``float_abs(float_abs(x))`` to ``float_abs(x)`` in the JIT
- Fix NFA generation in metaparser for grammar rules of form ``foo: [a* b]`` in
the parser generator that is used for PyPy2.7 and PyPy3.8.
- Introduce ``space.newtuple2`` to save the list allocation when a specialized
two-tuple is used anyway and use it in ``.next`` of ``enumerate`` and ``zip``.
- Speed up using ``warnings.warn`` by making it more JIT friendly
- Add an option to the collect analyzer when defining a custom gc trace function
- Add a runtime JIT hook to disable tracing
- Add ``PYPY_DISABLE_JIT`` as an environment variable to disable the JIT (issue 3148_)
- Fast-path finding whitespace in an ascii string inside ``unicode.split()``
- Resync ``_vmprof`` with ``vmprof-python``
- Replace the trie of names in unicodedata with a directed acyclic word graph
to make it more compact. Also various other improvements to make unicodedata
more compact. This change shrinks the PyPy2.7 binary by 2.1MiB, PyPy3.x by
2.6MiB.
- Review all the use cases of ``jit.loop_unrolling_heuristic``, to unroll less
aggressively (issue 3781_)
- Inline ``_fill_original_boxes`` in the JIT to avoid creating variants in C
- Optimize ``inline_call_*`` in the JIT by filling in the new frame directly
instead of creating an intermediate list of boxes
- Make sure the ``LivenessIterator`` gets inlined and optimized away in the JIT
- Speed up ``append_slice`` on unicode builders
- Make ``list.__repr__`` use a jit driver, and have implementations for a few
of the strategies
- Expose a new function ``__pypy__._raise_in_thread`` that will raise an
asynchronous exception in another thread the next time that thread runs. This
also makes it possible to implement ``PyThreadState_SetAsyncExc`` (issue 3757_)
- Make locals use an instance dict to speed them up
- Tiny warmup improvement: don't create the ``recentops`` in the JIT optimizer
when looking for an existing operation, only when adding one
- Avoid using the pureop cache for ``int_invert`` and ``float_neg``
- Speed up global dict reads by using the heapcache in the JIT frontend
- Constant-fold ``ovf`` operations in rpython
- Consider equal lltype ptrs to be equal constants in rpython constant-folding
C-API (cpyext) and C-extensions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Make sure ``decref`` is being called even if a C-level call raises an
exception (issue 3854_)
Python 3.8+
-----------
Python 3.8+ bugfixes
~~~~~~~~~~~~~~~~~~~~
- Fix bug in the disassembler of py3 opcodes (issue 3700_)
- Raise ``ModuleNotFoundError`` instead of ``ImportError`` in some cases
- Fix ``.lineno``, ``.col_offset`` for decorated functions and classes
- Add a ``name`` to ``sys.hash_info``
- Fix concurrency problem in buffered ``io`` reading (issue 3729_)
- Make it possible to multiple-inherit from ``KeyError`` again (issue 3728_)
- Check results from _openssl's ``EVP_DigestInit_ex`` and ``EVP_DigestUpdate``,
and fix some failing tests (issue 3741_)
- Fix pickling of ``filter`` objects
- Fix the way that the lookup annotation optimization breaks python3 due to the
way that module instances can change their class at runtime (issue 3758_)
- Use the name mapping when creating new hashes for ``_hashlib`` (issue 3778_)
- Expose ``os.sendfile`` on macos
- Do not override PyPy's ``MAGIC_NUMBER`` when using ``importlib/_bootstrap_external.py`` (issue 3783_)
- Fix dictionary unpacking for ``kwargs`` (issue 3775_)
- Add memory pressure when creating a tkinter image (issue 3798_)
- Remove debug print from ``_winapi`` (issue 3819_)
- Add ``__contains__`` to ``array.array`` type (issue 3820_)
- Fix CVE-2022-37454 via porting CPython changes to _sha3/kcp/KeccakSponge.inc
- Make type lookups fill the ``.name`` field of ``AttributeError``
- Check cursor lock in sqlite3 ``Cursor.close``, also lock around ``__fetch_one_row``
- Implement ``os.get_native_thread``
- Fix setting a slice in a ``memoryview`` with non-unit strides (issue 3857_)
- Fix the ``__copy__`` optimization of ``itertools.tee``, which was copying the
iterable, not the iterator (issue 3852_)
- Fix ``time.strftime`` when the ``format`` contains unicode (issue 3862_)
- Fix ``time.strftime`` formatting on windows
Python 3.8+ speedups and enhancements
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Speed up ``fstrings`` by making the parentstack a resizable list of chars
- Better error message when the ``__iter__`` of a class is set to ``None`` (issue 3716_)
- Refactor the ``package.py`` script for better compatibility with conda-forge
- Add a jit driver for ``filter`` (issue 3745_)
- Improve opcode handling: ``jump_absolute``, ``int_xor``, and others
- Don't make a JIT loop for one-arg ``print()``
- Make float hashing elidable and avoid creating bridges
- Mimic CPython's ``max_int_threshold`` to limit the length of a string that
that can be parsed into an int
Python 3.8+ C-API
~~~~~~~~~~~~~~~~~
- Add ``PyReversed_Type``, ``PyUnicode_EncodeCodePage``,
``PyInterpreterState_GetID``, ``PyErr_SetFromErrnoWithFilenameObjects``,
``PyUnicode_Append``, ``PyUnicode_AppendAndDel``, ``PyClassMethod_Type``,
``PyStructSequence_SetItem``, ``PyStructSequence_GetItem``,
``PyDictValues_Type``, ``PyDictKeys_Type``,
- Map user defined python ``__init__`` to ``tp_init`` (issue 2806_)
- Fix PyDict_Contains (issue 3742_)
- Allow big ints in ``PyNumber_ToBase`` (issue 3765_)
- Normalize OSErrors more consistently, may not be completely fixed on macos
(issue 3786_)
- Fix ``PyDict_Contains`` to raise on unhashable key
- Use ``tp_itemsize==0`` on ``PyUnicode_Type``, even for compact forms (issue
3772_)
- Include ``<sys/time.h>`` in headers, which fixes a problem with musl (issue
3801_)
- Add missing incref in ``PyObject_Init``, allocate ``tp_basicsize`` bytes when
creating a ``PyTypeObject`` (issues 3844_, 3847_)
- Assign ``tp_getset`` to app-level type in ``PyType_FromSpecWithBases`` (issue 3851_)
- Properly instantiate ``PyFunction_Type``, ``PyMethod_Type``,
``PyRange_Type``, ``PyTraceBack_Type`` (issue 3776_)
Python 3.9+
-----------
Python 3.9+ bugfixes
~~~~~~~~~~~~~~~~~~~~
- Fix ``f-string`` bug where the recursive tokenization was done incorrectly (issue 3751_)
- Fixes to ``repr`` and slots of nested ``GenericAliases`` (issue 3720_)
- Match CPython error messages for zip when ``strict=True`` (this is a
backported 3.10 feature).
- Add ``BASE_TYPE_ADAPTION`` optimization to sqlite3, copied from CPython's approach
- Make ``__file__`` of the ``__main__`` module be an absolute path, if possible
(issue 3766_)
- Use an absolute path for the main module (issue 3792_)
- Use an absolute path for ``sys.path[0]`` when running a directory from the
cmdline (issue 3792_)
- Fix first line number of ``eval`` to be reported as 0 (issue 3800_)
- Implement ``bitcount`` for ints
- Check when unmarshalling ``TYPE_SHORT_ASCII`` that non-ascii bytes are not present
- Fix CVE-2022-42919 (str -> int parsing) as CPython did in cpython-97514_
- Fix ``DICT_MERGE`` bytecode with objects that aren't dicts and don't implement
``__len__`` (issue 3841_)
- Remove redundant pure-python ``_functools.py`` (issue 3861_)
- Fix pure-python ``functools.py`` from CPython (CPython uses a c-extension)
Python 3.9+ speedups and enhancements
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Adopt CPython changes to speed up fractions (issue 3746_, cpython-91851_)
- Speed up ``math.perm`` and ``math.comb`` (issue 3859_)
Python 3.9+ C-API
~~~~~~~~~~~~~~~~~
- Add ``PyObject_VectorcallMethod``,
- Add ``PyObject_Call`` variants ``*NoArgs``, ``*OneArg``, ``*MethodNoArgs``,
``*MethodOneArg`` (issue 3669_)
- Handle vectorcall offset (issue 3845_)
.. _3716: https://foss.heptapod.net/pypy/pypy/-/issues/3716
.. _3720: https://foss.heptapod.net/pypy/pypy/-/issues/3720
.. _3751: https://foss.heptapod.net/pypy/pypy/-/issues/3751
.. _3700: https://foss.heptapod.net/pypy/pypy/-/issues/3700
.. _3728: https://foss.heptapod.net/pypy/pypy/-/issues/3728
.. _3729: https://foss.heptapod.net/pypy/pypy/-/issues/3729
.. _3733: https://foss.heptapod.net/pypy/pypy/-/issues/3733
.. _3742: https://foss.heptapod.net/pypy/pypy/-/issues/3742
.. _3741: https://foss.heptapod.net/pypy/pypy/-/issues/3741
.. _3744: https://foss.heptapod.net/pypy/pypy/-/issues/3744
.. _3745: https://foss.heptapod.net/pypy/pypy/-/issues/3745
.. _2806: https://foss.heptapod.net/pypy/pypy/-/issues/2806
.. _3717: https://foss.heptapod.net/pypy/pypy/-/issues/3717
.. _3619: https://foss.heptapod.net/pypy/pypy/-/issues/3619
.. _3753: https://foss.heptapod.net/pypy/pypy/-/issues/3753
.. _3759: https://foss.heptapod.net/pypy/pypy/-/issues/3759
.. _3559: https://foss.heptapod.net/pypy/pypy/-/issues/3559
.. _3802: https://foss.heptapod.net/pypy/pypy/-/issues/3802
.. _3824: https://foss.heptapod.net/pypy/pypy/-/issues/3824
.. _3821: https://foss.heptapod.net/pypy/pypy/-/issues/3821
.. _3828: https://foss.heptapod.net/pypy/pypy/-/issues/3828
.. _3840: https://foss.heptapod.net/pypy/pypy/-/issues/3840
.. _3756: https://foss.heptapod.net/pypy/pypy/-/issues/3756
.. _3148: https://foss.heptapod.net/pypy/pypy/-/issues/3148
.. _3781: https://foss.heptapod.net/pypy/pypy/-/issues/3781
.. _3757: https://foss.heptapod.net/pypy/pypy/-/issues/3757
.. _3758: https://foss.heptapod.net/pypy/pypy/-/issues/3758
.. _3778: https://foss.heptapod.net/pypy/pypy/-/issues/3778
.. _3783: https://foss.heptapod.net/pypy/pypy/-/issues/3783
.. _3775: https://foss.heptapod.net/pypy/pypy/-/issues/3775
.. _3798: https://foss.heptapod.net/pypy/pypy/-/issues/3798
.. _3819: https://foss.heptapod.net/pypy/pypy/-/issues/3819
.. _3820: https://foss.heptapod.net/pypy/pypy/-/issues/3820
.. _3857: https://foss.heptapod.net/pypy/pypy/-/issues/3857
.. _3765: https://foss.heptapod.net/pypy/pypy/-/issues/3765
.. _3786: https://foss.heptapod.net/pypy/pypy/-/issues/3786
.. _3772: https://foss.heptapod.net/pypy/pypy/-/issues/3772
.. _3801: https://foss.heptapod.net/pypy/pypy/-/issues/3801
.. _3844: https://foss.heptapod.net/pypy/pypy/-/issues/3844
.. _3847: https://foss.heptapod.net/pypy/pypy/-/issues/3847
.. _3851: https://foss.heptapod.net/pypy/pypy/-/issues/3851
.. _3776: https://foss.heptapod.net/pypy/pypy/-/issues/3776
.. _3766: https://foss.heptapod.net/pypy/pypy/-/issues/3766
.. _3792: https://foss.heptapod.net/pypy/pypy/-/issues/3792
.. _3792: https://foss.heptapod.net/pypy/pypy/-/issues/3792
.. _3800: https://foss.heptapod.net/pypy/pypy/-/issues/3800
.. _3841: https://foss.heptapod.net/pypy/pypy/-/issues/3841
.. _3746: https://foss.heptapod.net/pypy/pypy/-/issues/3746
.. _3669: https://foss.heptapod.net/pypy/pypy/-/issues/3669
.. _3845: https://foss.heptapod.net/pypy/pypy/-/issues/3845
.. _3852: https://foss.heptapod.net/pypy/pypy/-/issues/3852
.. _3854: https://foss.heptapod.net/pypy/pypy/-/issues/3854
.. _3859: https://foss.heptapod.net/pypy/pypy/-/issues/3859
.. _3861: https://foss.heptapod.net/pypy/pypy/-/issues/3861
.. _3862: https://foss.heptapod.net/pypy/pypy/-/issues/3862
.. _3864: https://foss.heptapod.net/pypy/pypy/-/issues/3864
.. _bpo34953: https://bugs.python.org/issue34953
.. _cpython-91851: https://github.com/python/cpython/issues/91851
.. _cpython-97514: https://github.com/python/cpython/issues/97514
.. _cpython-87389: https://github.com/python/cpython/issues/87389
|