Skip to content
Snippets Groups Projects
Select Git revision
0 results

LICENSE.PSF

  • Alex Gaynor's avatar
    893af75262e5
    C locking callback (#3226) · 893af75262e5
    Alex Gaynor authored
    * Remove Python OpenSSL locking callback and replace it with one in C
    
    The Python OpenSSL locking callback is unsafe; if GC is triggered
    during the callback's invocation, it can result in the callback being
    invoked reentrantly, which can lead to deadlocks. This patch replaces
    it with one in C that gets built at compile time via cffi along with
    the rest of the OpenSSL binding.
    
    * fixes for some issues
    
    * unused
    
    * revert these changes
    
    * these two for good measure
    
    * missing param
    
    * sigh, syntax
    
    * delete tests that assumed an ability to mess with locks
    
    * style fixes
    
    * licensing stuff
    
    * utf8
    
    * Unicode. Huh. What it isn't good for, absolutely nothing.
    893af75262e5
    History
    C locking callback (#3226)
    Alex Gaynor authored
    * Remove Python OpenSSL locking callback and replace it with one in C
    
    The Python OpenSSL locking callback is unsafe; if GC is triggered
    during the callback's invocation, it can result in the callback being
    invoked reentrantly, which can lead to deadlocks. This patch replaces
    it with one in C that gets built at compile time via cffi along with
    the rest of the OpenSSL binding.
    
    * fixes for some issues
    
    * unused
    
    * revert these changes
    
    * these two for good measure
    
    * missing param
    
    * sigh, syntax
    
    * delete tests that assumed an ability to mess with locks
    
    * style fixes
    
    * licensing stuff
    
    * utf8
    
    * Unicode. Huh. What it isn't good for, absolutely nothing.
This project is licensed under the BSD 3-Clause Clear License. Learn more