diff options
author | Saiyang Gou <gousaiyang@163.com> | 2020-10-15 12:06:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 16:06:23 -0300 |
commit | cf693e537dc8aaa14315a7f59baec4a31d1167d3 (patch) | |
tree | 2b63be01c65a6c38542cf3f4a99b7b8f7bfc5b0d | |
parent | e6b8c5263a7fcf5b95d0fd4c900e5949eeb6630d (diff) | |
download | cpython-git-cf693e537dc8aaa14315a7f59baec4a31d1167d3.tar.gz |
Document that `test.support.bytecode_helper` is new in 3.9 (GH-22618)
-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 6495b48444..ce6b868458 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -1168,6 +1168,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) |