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 [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to