Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
FIX: build on cpython master branch #128
Conversation
python/cpython#16013 python/cpython@3a4f667 removed two arguments from _PyBytes_DecodeEscape . This calls _PyBytes_DecodeEscape with the new signature if the minor version is 9 or greater.
LGTM. Thanks for catching this! |
I guess it's too early in the CPython release cycle to do a new typed_ast release just to make it compile with 3.9. Let's just remember this here PR if we get bug reports about not typed_ast compiling for 3.9. |
python/cpython#16013 / python/cpython@3a4f667
removed two arguments from _PyBytes_DecodeEscape .
This calls _PyBytes_DecodeEscape with the new signature if the minor version is 9 or greater.
Followed the convention of only checking minor versions from earlier in the code.