summaryrefslogtreecommitdiff
path: root/Lib/ctypes/test/test_memfunctions.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/ctypes/test/test_memfunctions.py')
-rw-r--r--Lib/ctypes/test/test_memfunctions.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/ctypes/test/test_memfunctions.py b/Lib/ctypes/test/test_memfunctions.py
index aa2113b885..aec4aaadac 100644
--- a/Lib/ctypes/test/test_memfunctions.py
+++ b/Lib/ctypes/test/test_memfunctions.py
@@ -1,4 +1,5 @@
import sys
+from test import support
import unittest
from ctypes import *
@@ -49,6 +50,7 @@ class MemFunctionsTest(unittest.TestCase):
self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
[97])
+ @support.refcount_test
def test_string_at(self):
s = string_at(b"foo bar")
# XXX The following may be wrong, depending on how Python