Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
SageMath
SageMath Developers
tracmirror
Compare Revisions
develop...u/chapoton/27972
Commits (1)
py3: fix last doctests in cpython folder
· b0cdda7a
Frédéric Chapoton
authored
Jun 12, 2019
b0cdda7a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/sage/cpython/dict_del_by_value.pyx
src/sage/cpython/dict_del_by_value.pyx
+2
-2
No files found.
src/sage/cpython/dict_del_by_value.pyx
View file @
b0cdda7a
...
...
@@ -432,10 +432,10 @@ def test_del_dictitem_by_exact_value(D, value, h):
exist in the dictionary::
sage: D = {1: ZZ}
sage: test_del_dictitem_by_exact_value(D, ZZ, 2)
sage: test_del_dictitem_by_exact_value(D, ZZ,
hash(
2)
)
sage: D
{1: Integer Ring}
sage: test_del_dictitem_by_exact_value(D, QQ, 1)
sage: test_del_dictitem_by_exact_value(D, QQ,
hash(
1)
)
sage: D
{1: Integer Ring}
"""
...
...