Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-updates > by-pkgid > 05cb0e982c3387afdb1d2b5f913d9e82 > files > 44

python-eventlet-doc-0.24.1-1.1.mga7.noarch.rpm

if __name__ == '__main__':
    # Importing eventlet.green.http.client after http.client was already imported
    # used to change the original http/http.client, that was breaking things.
    import http.client
    original_id = id(http.client)
    import eventlet.green.http.client  # noqa
    assert id(http.client) == original_id
    print('pass')