Staging
v0.5.1
https://github.com/python/cpython
Revision c310185c081110741fae914c06c7aaf673ad3d0d authored by Victor Stinner on 27 October 2020, 20:34:33 UTC, committed by GitHub on 27 October 2020, 20:34:33 UTC
Use PyLong_FromLong(0) and PyLong_FromLong(1) of the public C API
instead. For Python internals, _PyLong_GetZero() and _PyLong_GetOne()
of pycore_long.h can be used.
1 parent 0564aaf
Raw File
Tip revision: c310185c081110741fae914c06c7aaf673ad3d0d authored by Victor Stinner on 27 October 2020, 20:34:33 UTC
bpo-42161: Remove private _PyLong_Zero and _PyLong_One (GH-23003)
Tip revision: c310185
_asyncio.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>{2422278e-eeeb-4241-8182-433e2bc5a7fc}</UniqueIdentifier>
    </Filter>
    <Filter Include="Resource Files">
      <UniqueIdentifier>{41f1cd52-b682-46aa-a7fd-7bdf81a18010}</UniqueIdentifier>
    </Filter>
  </ItemGroup>
  <ItemGroup>
    <ClCompile Include="..\Modules\_asynciomodule.c">
      <Filter>Source Files</Filter>
    </ClCompile>
  </ItemGroup>
  <ItemGroup>
    <ResourceCompile Include="..\PC\python_nt.rc">
      <Filter>Resource Files</Filter>
    </ResourceCompile>
  </ItemGroup>
</Project>
back to top