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

gh-84461: Silence some compiler warnings on WASM (GH-93978) #93978

Merged
merged 3 commits into from
Jun 20, 2022

Commits on Jun 18, 2022

  1. pythongh-84461: Silence compiler warnings on WASM

    ```
    Objects/stringlib/fastsearch.h:358:30: warning: comparison of integers of different signs: 'Py_ssize_t' (aka 'long') and 'unsigned int' [-Wsign-compare]
    Modules/socketmodule.c:1025:1: warning: unused function 'new_sockobject' [-Wunused-function]
    Modules/signalmodule.c:195:1: warning: unused function 'timeval_from_double' [-Wunused-function]
    Modules/_io/bufferedio.c:809:5: warning: use of bitwise '&' with boolean operands [-Wbitwise-instead-of-logical]
    emcc: warning: object file output extension (.so) used for non-object output.  If you meant to build an object file please use `-c, `-r`, or `-shared` [-Wemcc]
    ```
    tiran committed Jun 18, 2022
    Configuration menu
    Copy the full SHA
    d128a75 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2022

  1. Configuration menu
    Copy the full SHA
    f230258 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5ba952c View commit details
    Browse the repository at this point in the history