summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org>2016-09-07 00:22:22 (GMT)
committerGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org>2016-09-07 00:22:22 (GMT)
commitcd14d5d29931d5f0bafa65b8233609de869220bc (patch)
tree2fcd48aec4436507b12536b96262267676e29821
parentaee52ccc8501402a77f27dc1de7859feff85e038 (diff)
downloadcpython-cd14d5d29931d5f0bafa65b8233609de869220bc.zip
cpython-cd14d5d29931d5f0bafa65b8233609de869220bc.tar.gz
cpython-cd14d5d29931d5f0bafa65b8233609de869220bc.tar.bz2
Correct a comment in the test referencing the wrong issue number (issue3100
is correct, not 3110).
-rw-r--r--Lib/test/test_weakref.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py
index 6d50a66..b1476d0 100644
--- a/Lib/test/test_weakref.py
+++ b/Lib/test/test_weakref.py
@@ -911,7 +911,7 @@ class SubclassableWeakrefTestCase(TestBase):
self.assertFalse(hasattr(r, "__dict__"))
def test_subclass_refs_with_cycle(self):
- # Bug #3110
+ """Confirm https://bugs.python.org/issue3100 is fixed."""
# An instance of a weakref subclass can have attributes.
# If such a weakref holds the only strong reference to the object,
# deleting the weakref will delete the object. In this case,