Staging
v0.8.1
https://github.com/python/cpython
Revision 95cc37f6b8e895a5042e2a10e5d9026429e06342 authored by Miss Islington (bot) on 28 July 2020, 15:55:38 UTC, committed by GitHub on 28 July 2020, 15:55:38 UTC

Prevent installation on Windows 8 and earlier.
Download UCRT on demand when required (non-updated Windows 8.1 only)
Add reference to py launcher to post-install message
(cherry picked from commit 37a06cbe5c17c2aa6ad938339fd42531a8a0bea0)

Co-authored-by: Steve Dower <steve.dower@python.org>
1 parent e31b8a5
Raw File
Tip revision: 95cc37f6b8e895a5042e2a10e5d9026429e06342 authored by Miss Islington (bot) on 28 July 2020, 15:55:38 UTC
bpo-41412 and bpo-40948: Windows installer updates (GH-21656)
Tip revision: 95cc37f
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