[Python-checkins] cpython: get_default_verify_paths doesn't belong inside the ifdef block
christian.heimes
python-checkins at python.org
Sun Jun 9 18:30:03 CEST 2013
http://hg.python.org/cpython/rev/4fdbe5d05922
changeset: 84070:4fdbe5d05922
user: Christian Heimes <christian at cheimes.de>
date: Sun Jun 09 18:29:54 2013 +0200
summary:
get_default_verify_paths doesn't belong inside the ifdef block
files:
Modules/_ssl.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -2819,9 +2819,9 @@
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 */
};
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list