summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_weakref.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2006-08-25 02:59:59 (GMT)
committerBrett Cannon <bcannon@gmail.com>2006-08-25 02:59:59 (GMT)
commit0b70cca9f8132b6fe03803abe9e89bd3a00a80ee (patch)
tree032e42eac6b0cf9538d10f468f820381806d1964 /Lib/test/test_weakref.py
parentdb60d6e2aa45fdc9f5f560847238a120e8a34f04 (diff)
downloadcpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.zip
cpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.tar.gz
cpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.tar.bz2
Remove usage of backticks.
Diffstat (limited to 'Lib/test/test_weakref.py')
-rw-r--r--Lib/test/test_weakref.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py
index f5114b2..1165980 100644
--- a/Lib/test/test_weakref.py
+++ b/Lib/test/test_weakref.py
@@ -51,10 +51,10 @@ class ReferencesTestCase(TestBase):
# Live reference:
o = C()
wr = weakref.ref(o)
- `wr`
+ repr(wr)
# Dead reference:
del o
- `wr`
+ repr(wr)
def test_basic_callback(self):
self.check_basic_callback(C)