summaryrefslogtreecommitdiff
path: root/Modules/_ctypes
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-02 10:13:47 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-06-02 10:13:47 +0000
commit6fe6574a91f807647f6b31cf67bdbbe4327f5717 (patch)
tree0eee0c9e73e3c156b657bf6827c20f9027241951 /Modules/_ctypes
parent8f95b5f57e967e41929a3a9c60b4b87b64e982aa (diff)
downloadcpython-6fe6574a91f807647f6b31cf67bdbbe4327f5717.tar.gz
Issue #27171: Fix typo in exception message
Diffstat (limited to 'Modules/_ctypes')
-rw-r--r--Modules/_ctypes/callproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c
index 9ab0723c65..9136a3e9e9 100644
--- a/Modules/_ctypes/callproc.c
+++ b/Modules/_ctypes/callproc.c
@@ -380,7 +380,7 @@ static void SetException(DWORD code, EXCEPTION_RECORD *pr)
whose operation is not allowed in the current
machine mode. */
PyErr_SetString(PyExc_OSError,
- "exception: priviledged instruction");
+ "exception: privileged instruction");
break;
case EXCEPTION_NONCONTINUABLE_EXCEPTION: