summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-02 10:13:47 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-02 10:13:47 (GMT)
commite2e71685f34b7252f0832d3b1247685e63b5acf8 (patch)
tree7da9906699fcc5dfd8260a1d31bdaa8b73c2b01c /Modules
parent0b7d84de6b3ec5264392e3bf7d3900b003cbeffd (diff)
downloadcpython-e2e71685f34b7252f0832d3b1247685e63b5acf8.zip
cpython-e2e71685f34b7252f0832d3b1247685e63b5acf8.tar.gz
cpython-e2e71685f34b7252f0832d3b1247685e63b5acf8.tar.bz2
Issue #27171: Fix typo in exception message
Diffstat (limited to 'Modules')
-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 9ab0723..9136a3e 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: