summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2016-08-21 07:43:58 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2016-08-21 07:43:58 (GMT)
commitcbcd221de4f13a855ba37d48a238895e4ddc92f4 (patch)
tree07b1b549e44c6feeeec8ebd4cd6d03642a7b1932 /Include
parentf9ed528fafafda147f20f345195ced23b141ace9 (diff)
parent8682f578c1c8fd0486c886b001729907a5409a9f (diff)
downloadcpython-cbcd221de4f13a855ba37d48a238895e4ddc92f4.zip
cpython-cbcd221de4f13a855ba37d48a238895e4ddc92f4.tar.gz
cpython-cbcd221de4f13a855ba37d48a238895e4ddc92f4.tar.bz2
Merge #27782 fix from 3.5
Diffstat (limited to 'Include')
-rw-r--r--Include/moduleobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/moduleobject.h b/Include/moduleobject.h
index 229d7fa..b44fb9b 100644
--- a/Include/moduleobject.h
+++ b/Include/moduleobject.h
@@ -77,7 +77,7 @@ typedef struct PyModuleDef{
traverseproc m_traverse;
inquiry m_clear;
freefunc m_free;
-}PyModuleDef;
+} PyModuleDef;
#ifdef __cplusplus
}