summaryrefslogtreecommitdiffstats
path: root/Modules/_ssl.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-06-09 16:29:54 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-06-09 16:29:54 (GMT)
commit142ec2c0149995c8d2299eaf6eccec9c69d6110b (patch)
tree3848923d9bfe588bf052e073250c53a8ce9e7951 /Modules/_ssl.c
parent3e738f97f8c8526fe620caa19d83561946ff4aef (diff)
downloadcpython-142ec2c0149995c8d2299eaf6eccec9c69d6110b.zip
cpython-142ec2c0149995c8d2299eaf6eccec9c69d6110b.tar.gz
cpython-142ec2c0149995c8d2299eaf6eccec9c69d6110b.tar.bz2
get_default_verify_paths doesn't belong inside the ifdef block
Diffstat (limited to 'Modules/_ssl.c')
-rw-r--r--Modules/_ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index f4cd38b..999dd09 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -2819,9 +2819,9 @@ static PyMethodDef PySSL_methods[] = {
PySSL_RAND_egd_doc},
{"RAND_status", (PyCFunction)PySSL_RAND_status, METH_NOARGS,
PySSL_RAND_status_doc},
+#endif
{"get_default_verify_paths", (PyCFunction)get_default_verify_paths,
METH_NOARGS, PySSL_get_default_verify_paths_doc},
-#endif
{NULL, NULL} /* Sentinel */
};