Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: python3 compat for inspector code generator #29340

Closed
wants to merge 1 commit into from

Commits on Sep 10, 2019

  1. tools: python3 compat for inspector code generator

    The code generator takes a dict and turns it into a namedtuple. The dict
    contains the key "async", which is a keyword in python 3.7, and rejected
    by the namedtuple constructor. Rename it to "async_" to avoid the clash.
    
    Fixes: nodejs#29326
    bnoordhuis committed Sep 10, 2019
    Configuration menu
    Copy the full SHA
    b2d25ce View commit details
    Browse the repository at this point in the history