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

Support parsing application/json-seq #110

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on May 16, 2024

  1. Propagate slurp through all program input methods

    Add the `slurp` argument to all `_Program.input*()` methods, and pass it
    through, so it's possible to supply it with every method. But most
    importantly the `_Program.input()`, which also accepts `text`.
    spbnick committed May 16, 2024
    Configuration menu
    Copy the full SHA
    ed88d05 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. Use PyBytes_AsStringAndSize()

    Let Python give us the length of the "bytes" it already knows, instead
    of doing an strlen(). This improves performance a bit.
    spbnick committed May 17, 2024
    Configuration menu
    Copy the full SHA
    3580e9d View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Support parsing application/json-seq

    Support parsing RS-separated streams, as per RFC 7464.
    spbnick committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    f91be41 View commit details
    Browse the repository at this point in the history