Staging
v0.5.1
https://github.com/python/cpython
Revision 99ba73d1188f4d52d2c741c26267da00a008f379 authored by Victor Stinner on 01 June 2018, 11:47:24 UTC, committed by GitHub on 01 June 2018, 11:47:24 UTC
* Move fd_count() from test.libregrtest.refleak to test.support
* Fix support.fd_count() on Windows: Call CrtSetReportMode() to not
  kill the process on invalid file descriptor if Python is compiled
  in debug mode.
1 parent 1d5198f
Raw File
Tip revision: 99ba73d1188f4d52d2c741c26267da00a008f379 authored by Victor Stinner on 01 June 2018, 11:47:24 UTC
bpo-31009: Move fd_count() to test.support (#7308)
Tip revision: 99ba73d
pyshellext.idl
import "ocidl.idl";

[uuid(44039A76-3BDD-41C1-A31B-71C00202CE81), version(1.0)]
library PyShellExtLib
{
    [uuid(BEA218D2-6950-497B-9434-61683EC065FE), version(1.0)]
    coclass PyShellExt
    {
        [default] interface IDropTarget;
        interface IPersistFile;
    }
};
back to top