summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes/test
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-03-15 04:03:08 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-03-15 04:03:08 (GMT)
commit373089239b26e7445aa44a3501c7056cfa4c3728 (patch)
tree5f2f35ff686dfa64092b06b730ed9090f6492896 /Lib/ctypes/test
parentdeaa678952dd437cb8cf9f697325705ad0855029 (diff)
parent4969f709cc07088a40574c05724d83cddc8fafc7 (diff)
downloadcpython-373089239b26e7445aa44a3501c7056cfa4c3728.zip
cpython-373089239b26e7445aa44a3501c7056cfa4c3728.tar.gz
cpython-373089239b26e7445aa44a3501c7056cfa4c3728.tar.bz2
#11515: Merge with 3.2.
Diffstat (limited to 'Lib/ctypes/test')
-rw-r--r--Lib/ctypes/test/test_functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_functions.py b/Lib/ctypes/test/test_functions.py
index a3b2b6a..f70cacd 100644
--- a/Lib/ctypes/test/test_functions.py
+++ b/Lib/ctypes/test/test_functions.py
@@ -116,7 +116,7 @@ class FunctionTestCase(unittest.TestCase):
self.assertEqual(result, 21)
self.assertEqual(type(result), int)
- # You cannot assing character format codes as restype any longer
+ # You cannot assign character format codes as restype any longer
self.assertRaises(TypeError, setattr, f, "restype", "i")
def test_floatresult(self):