commit | 76611c7c0af6b2f4d0d98a5db827d34cff54ce25 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Tue Jul 09 13:30:52 2019 +0200 |
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Tue Jul 09 04:30:52 2019 -0700 |
tree | c22a061c9ea72813f40d3cd0c85d7ceaedc9df32 | |
parent | 91b4f7ab7f9a5e0908b91379ee085ae087a76483 [diff] |
bpo-37120: Fix _ssl get_num_tickets() (GH-14668) Replace PyLong_FromLong() with PyLong_FromSize_t(): SSL_CTX_get_num_tickets() return type is size_t. https://bugs.python.org/issue37120