diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-19 22:44:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 22:44:06 (GMT) |
commit | 6a9c1268cafb3c91a54b577ae7c7e7a937467a4c (patch) | |
tree | 0aed4e5d029ec036e11daba4d366f4d2a3a0a512 | |
parent | 05d52a0ad69cbadd4b048f2a97991e4e58d4a922 (diff) | |
download | cpython-6a9c1268cafb3c91a54b577ae7c7e7a937467a4c.zip cpython-6a9c1268cafb3c91a54b577ae7c7e7a937467a4c.tar.gz cpython-6a9c1268cafb3c91a54b577ae7c7e7a937467a4c.tar.bz2 |
Document that `test.support.bytecode_helper` is new in 3.9 (GH-22618) (GH-22761)
(cherry picked from commit cf693e537dc8aaa14315a7f59baec4a31d1167d3)
Co-authored-by: Saiyang Gou <gousaiyang@163.com>
Co-authored-by: Saiyang Gou <gousaiyang@163.com>
-rw-r--r-- | Doc/library/test.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index f7e6eba..e24f69c 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -1609,6 +1609,8 @@ script execution tests. The :mod:`test.support.bytecode_helper` module provides support for testing and inspecting bytecode generation. +.. versionadded:: 3.9 + The module defines the following class: .. class:: BytecodeTestCase(unittest.TestCase) |