3.9.10 (PyPy 7.3.8 rc) has incorrect releaselevel
This is a release candidate, but the releaselevel in both version_info and pypy_version_info says "final":
$ /usr/local/pypy/pypy3.9-v7.3.8rc1-osx64/bin/python
Python 3.9.10 (307e102d7222131fee14073e8856df773627186c, Jan 24 2022, 18:24:25)
[PyPy 7.3.8 with GCC Apple LLVM 13.0.0 (clang-1300.0.29.30)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
(.startup.py)
(imported collections, datetime, dis, itertools, json, math, os, pprint, re, sys, time)
>>>> sys.version
'3.9.10 (307e102d7222131fee14073e8856df773627186c, Jan 24 2022, 18:24:25)\n[PyPy 7.3.8 with GCC Apple LLVM 13.0.0 (clang-1300.0.29.30)]'
>>>> sys.version_info
sys.version_info(major=3, minor=9, micro=10, releaselevel='final', serial=0)
>>>> sys.pypy_version_info
sys.pypy_version_info(major=7, minor=3, micro=8, releaselevel='final', serial=0)
>>>>