Adrian Sampson

Results 1031 comments of Adrian Sampson
trafficstars

That's odd! Can you please look into it and see if you can guess what might be going wrong?

Sounds great! I'd happily take a pull request if you are interested in crafting one.

This is related to #34, where the desire is to load audio data from the network. This would be a good idea, if we can retrofit a direct-from-memory interface onto...

Cool! If you're interested, maybe the right place to start would be with the `ffdec` backend. You could try hacking it in at first in the most non-elegant way possible—just...

Cool; looks good! Maybe we should pull this into a branch in the central repository so everybody can work on it together. I don't quite see why the new version...

That sounds great. That "hanging" behavior, in fact, is exactly why we need a separate thread for reading (and now for writing): the OS call to read or write from...

Awesome; this is a super cool idea! I’d love to incorporate this. Here are some initial high-level impressions: - A very small nit: maybe this new stuff should live in...

Aha, thank you for explaining! I obviously read your original explanation of the "invalid" state too quickly. This makes sense! I suppose I like the idea of renaming the state....

That unification of exception types seems like a good idea to me! If I understand correctly, I think it's probably not necessary to add a second "layer" of defaults… that...

Hi! Thanks for the suggestion. I generally like iterator-based APIs, though, and they're quite common in modern Python. Even `dict.items()`, for example, is an iterator these days. I agree there's...