It looks like a signed Character problem, It is expecting a value under 127, if it were a unsigned character the ORD value up is 0 to 255, would be OK, 0xE2 converts to 226 Decimal. The interpreter may be defaulting to a signed characters in this version. So you may want to force it to make characters variables unsigned.
On Wednesday, June 6, 2018 at 8:56:08 AM UTC-6, [email protected] wrote: > > Hi, > > I am trying to set the headers on the http response but realised in some > cases the http response has been serialised and the setHeader() function > will fail. When exactly does app engine serialise the http response? > > Best, > Baojun > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/5ea0e3be-cd49-4c74-8e37-528cc79679e0%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
