diff options
author | Christian Heimes <christian@cheimes.de> | 2013-06-09 16:29:54 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-06-09 16:29:54 (GMT) |
commit | 142ec2c0149995c8d2299eaf6eccec9c69d6110b (patch) | |
tree | 3848923d9bfe588bf052e073250c53a8ce9e7951 | |
parent | 3e738f97f8c8526fe620caa19d83561946ff4aef (diff) | |
download | cpython-142ec2c0149995c8d2299eaf6eccec9c69d6110b.zip cpython-142ec2c0149995c8d2299eaf6eccec9c69d6110b.tar.gz cpython-142ec2c0149995c8d2299eaf6eccec9c69d6110b.tar.bz2 |
get_default_verify_paths doesn't belong inside the ifdef block
-rw-r--r-- | Modules/_ssl.c | 2 |
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 */ }; |