]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
get_default_verify_paths doesn't belong inside the ifdef block
authorChristian Heimes <christian@cheimes.de>
Sun, 9 Jun 2013 16:29:54 +0000 (18:29 +0200)
committerChristian Heimes <christian@cheimes.de>
Sun, 9 Jun 2013 16:29:54 +0000 (18:29 +0200)
Modules/_ssl.c

index f4cd38b1397bf5e8b8875176b2e89ea41fd361f8..999dd0953321d2f84247da7c29dc53d461300fe1 100644 (file)
@@ -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 */
 };