Not sure why you are trying to log individual characters.

and what are you doing with this rpc function.  Not enough information
provided. How is it invoked.

T

On Sep 24, 11:37 am, Monte <montebel...@gmail.com> wrote:
> Greetings
>
> Trying not to duplicate this more than necessary...but I am getting it
> consistently, it appears not to be entity specific:
> "A serious problem was encountered with the process that handled this
> request, causing it to exit"
>
> Basically I have:
>
> class Foo(db.Model):
>    bar = db.TextProperty()
>
> def rpc():
>    foo = Foo()
>    foo.bar = 'FOO\nBAR'
>    key = foo.put()
>    foo = db.get(key)
>
>    # this results in the above unfortunate result
>    for c in foo.bar:
>       logging.info(c)
>
>    # this results in no problemo
>    for c in foo.bar.replace('\n', ''):
>       logging.info(c)
>
>    # =
>    # F
>    # O
>    # O
>    # B
>    # A
>    # R
>
> Any thoughts greatly appreciated!

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to