Staging
v0.5.1
https://github.com/python/cpython
Revision 6a89481680b921e7b317c29877bdda9a6031e5ad authored by Nir Soffer on 01 December 2017, 01:18:58 UTC, committed by Victor Stinner on 01 December 2017, 01:18:58 UTC
In _io_FileIO_readall_impl(), lseek() and _Py_fstat_noraise() were called
without releasing the GIL. This can cause all threads to hang for
unlimited time when calling FileIO.read() and the NFS server is not
accessible.
1 parent c319eee
Raw File
Tip revision: 6a89481680b921e7b317c29877bdda9a6031e5ad authored by Nir Soffer on 01 December 2017, 01:18:58 UTC
bpo-32186: Release the GIL during lseek and fstat (#4652)
Tip revision: 6a89481
_lzma.vcxproj.filters
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup>
    <Filter Include="Source Files">
      <UniqueIdentifier>{53e68eda-39fc-4336-a658-dc5f5d598760}</UniqueIdentifier>
    </Filter>
  </ItemGroup>
  <ItemGroup>
    <ClCompile Include="..\Modules\_lzmamodule.c">
      <Filter>Source Files</Filter>
    </ClCompile>
  </ItemGroup>
</Project>
back to top