The documentation of new reference counting features can be found in peps.python.org/pep-0703/#reference-counting.
According to the PEP, in biased reference counting that assumes most objects are linked to one owning thread, the owning thread utilize non-atomic instructions to adjust the local reference count, while other threads employ atomic instructions to modify the shared reference count.