Staging
v0.5.1
https://github.com/python/cpython
Revision 435b2eeb7bc5b8ec264e900b38bcb3d76552d777 authored by Victor Stinner on 07 October 2019, 19:12:05 UTC, committed by GitHub on 07 October 2019, 19:12:05 UTC
Always define _PyUnicode_CheckConsistency() in the CPython C API.
1 parent 13915a3
Raw File
Tip revision: 435b2eeb7bc5b8ec264e900b38bcb3d76552d777 authored by Victor Stinner on 07 October 2019, 19:12:05 UTC
bpo-38376: Fix _PyUnicode_CheckConsistency() definition (GH-16623)
Tip revision: 435b2ee
build.bat
@rem Used by the buildbot "compile" step.

@rem Clean up
call "%~dp0clean.bat" %*

@rem If you need the buildbots to start fresh (such as when upgrading to
@rem a new version of an external library, especially Tcl/Tk):
@rem 1) uncomment the following line:

@rem    call "%~dp0..\..\PCbuild\get_externals.bat" --clean-only

@rem 2) commit and push
@rem 3) wait for all Windows bots to start a build with that changeset
@rem 4) re-comment, commit and push again

@rem Do the build
call "%~dp0..\..\PCbuild\build.bat" -e -d -k -v %*
back to top