diff options
author | Benjamin Peterson <benjamin@python.org> | 2017-01-16 00:05:47 -0800 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2017-01-16 00:05:47 -0800 |
commit | 741c45adabc23c65ea85ff817c3266665ccf76e1 (patch) | |
tree | 9107536b7822cd272dd06a1283019704b55f5b95 | |
parent | 61eda7260ac9fcdb6c5f066eb48dc344544bdfa6 (diff) | |
parent | a105dd3dc0b054f0d7977e19b682a0016b67790f (diff) | |
download | cpython-git-741c45adabc23c65ea85ff817c3266665ccf76e1.tar.gz |
merge 3.5
-rwxr-xr-x | Modules/makesetup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/makesetup b/Modules/makesetup index e204a0595c..8db8de80ad 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -259,7 +259,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' | for mod in $MODS do EXTDECLS="${EXTDECLS}extern PyObject* PyInit_$mod(void);$NL" - INITBITS="${INITBITS} {\"$mod\", PyInit_$mod},$NL" + INITBITS="${INITBITS} {\"$mod\", PyInit_$mod},$NL" done |