----- Original Message ----- From: "Chris Withers" <chrisw@nipltd.com> To: "Andreas Jung" <andreas@andreas-jung.com> Cc: <tdickenson@geminidataloggers.com>; "Steve Alexander" <steve@cat-box.net>; "Harry Wilkinson" <harryw@nipltd.com>; <zope-dev@zope.org> Sent: Donnerstag, 26. Juli 2001 07:04 Subject: Re: [Zope-dev] Modifying Splitter.c to search on '+' & '#', and single letter words
Andreas Jung wrote:
26, well, in the current alphabet.
*sigh* Germans need some more letters: üöäß :-)
...and no doubt they'll be unicode strings that you can't use as attribute names ;-)
As described earlier Python attributes are ASCII only. And Zope uses setattr() for storing object properties. To allow unicode properties Zope has to be modified to store the (key,value) inside e.g. a dictionary. I am not sure if we could do that in a backward compatible way. Andreas