diff options
author | Lisa Roach <lisaroach14@gmail.com> | 2018-09-14 06:56:23 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2018-09-14 06:56:23 (GMT) |
commit | 5ac704306f4b81ae3f28d8742408d3214b145e8a (patch) | |
tree | 34a39f0216d918b679367a84e05f2326aef70a7c /Lib/test/test_doctest.py | |
parent | 83df50ea5757816c7338d27f21fd18b1e79206f7 (diff) | |
download | cpython-5ac704306f4b81ae3f28d8742408d3214b145e8a.zip cpython-5ac704306f4b81ae3f28d8742408d3214b145e8a.tar.gz cpython-5ac704306f4b81ae3f28d8742408d3214b145e8a.tar.bz2 |
bpo-33073: Adding as_integer_ratio to ints. (GH-8750)
Diffstat (limited to 'Lib/test/test_doctest.py')
-rw-r--r-- | Lib/test/test_doctest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py index 83941c1..797bdb8 100644 --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -665,7 +665,7 @@ plain ol' Python and is guaranteed to be available. True >>> real_tests = [t for t in tests if len(t.examples) > 0] >>> len(real_tests) # objects that actually have doctests - 8 + 9 >>> for t in real_tests: ... print('{} {}'.format(len(t.examples), t.name)) ... @@ -675,6 +675,7 @@ plain ol' Python and is guaranteed to be available. 2 builtins.float.hex 1 builtins.hex 1 builtins.int + 3 builtins.int.as_integer_ratio 2 builtins.int.bit_length 1 builtins.oct |