Re: [pylons-discuss] webob SignedSerializer questions

2023-06-12 Thread Jonathan Vanasco
Thanks for the quick response. After digging through this for a bit, I think there just may be a lot of artifacts in here from years of code updates and specs changing. In webob's response.Response, set_cookie accepts a string

Re: [pylons-discuss] webob SignedSerializer questions

2023-06-12 Thread Bert JW Regeer
> On Jun 12, 2023, at 12:42, Jonathan Vanasco wrote: > > I've been updating my session library to utilize typing/mypy and this > implementation detail surfaced between mypy integration and some new tests. > > I hope someone can enlighten me on this and some best testing practices... > >

[pylons-discuss] webob SignedSerializer questions

2023-06-12 Thread Jonathan Vanasco
I've been updating my session library to utilize typing/mypy and this implementation detail surfaced between mypy integration and some new tests. I hope someone can enlighten me on this and some best testing practices... Webob's SignedSerializer expects to dump to, and load from, `bytes`. The