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

When getting string size, count UTF8 bytes #79

Merged
merged 8 commits into from
Oct 17, 2024
Merged

Commits on Oct 15, 2024

  1. When getting string size, count UTF8 bytes

    .. rather than Unicode code points.
    
    Closes libfuse#77
    jepler committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    22b8dd1 View commit details
    Browse the repository at this point in the history
  2. Fix warning: PyEval_InitThreads deprecated

    Since version 3.7, this function is a no-op and is slated for
    removal in a future Python version.
    jepler committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    8f2ad4f View commit details
    Browse the repository at this point in the history
  3. Fix -Wsign-compare diagnostics

    Cast the signed results of e.g., PyString_Size to size_t.
    
    In the event that the result is an error value somehow the negative
    value will almost certainly exceed the requested size and return
    with an error.
    jepler committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    d980a5f View commit details
    Browse the repository at this point in the history
  4. Fix inconsistent indentation

    jepler committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    4c44494 View commit details
    Browse the repository at this point in the history
  5. Remove my name from the authors listed on pypi

    I am content to be credited in the AUTHORS file
    jepler committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    ca31846 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    84557e5 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. Configuration menu
    Copy the full SHA
    d812d17 View commit details
    Browse the repository at this point in the history
  2. Add test of utf-8 xattrs

    jepler committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    4129521 View commit details
    Browse the repository at this point in the history