diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2023-10-19 15:05:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-19 15:05:17 (GMT) |
commit | 63acf78d710461919b285213fadc817108fb754e (patch) | |
tree | 0b495c5674bf6ea72ec2d5d7f55dabcffb8dfcba /Doc/library/test.rst | |
parent | da991337105e6d87b85a20fdcb386aa140f94d23 (diff) | |
download | cpython-63acf78d710461919b285213fadc817108fb754e.zip cpython-63acf78d710461919b285213fadc817108fb754e.tar.gz cpython-63acf78d710461919b285213fadc817108fb754e.tar.bz2 |
GH-101100: Fix reference warnings for ``__enter__`` and ``__exit__`` (#110112)
Diffstat (limited to 'Doc/library/test.rst')
-rw-r--r-- | Doc/library/test.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index de60151..6be7726 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -1043,7 +1043,7 @@ The :mod:`test.support` module defines the following classes: :const:`resource.RLIMIT_CORE`'s soft limit to 0 to prevent coredump file creation. - On both platforms, the old value is restored by :meth:`__exit__`. + On both platforms, the old value is restored by :meth:`~object.__exit__`. .. class:: SaveSignals() |