Re: web frameworks that support Python 3

2009-08-25 Thread Graham Dumpleton
On Aug 26, 12:19 pm, exar...@twistedmatrix.com wrote: > On 01:41 am, a...@pythoncraft.com wrote: > > > > > > >In article > >, > >Graham Dumpleton   wrote: > >>On Aug 24, 6:34=A0am, Sebastian Wiesner wrote: > > >>>In any case, there is bottle [1], which provides a *very minimal* > >>>framewo= > >>r

Re: web frameworks that support Python 3

2009-08-25 Thread exarkun
On 01:41 am, a...@pythoncraft.com wrote: In article , Graham Dumpleton wrote: On Aug 24, 6:34=A0am, Sebastian Wiesner wrote: In any case, there is bottle [1], which provides a *very minimal* framewo= rk for WSGI web development. =A0Don't expect too much, it is really small, a= nd does

Re: web frameworks that support Python 3

2009-08-25 Thread Aahz
In article , Graham Dumpleton wrote: >On Aug 24, 6:34=A0am, Sebastian Wiesner wrote: >> >> In any case, there is bottle [1], which provides a *very minimal* framewo= >rk >> for WSGI web development. =A0Don't expect too much, it is really small, a= >nd >> doesn't do much more than routing and mi

Re: web frameworks that support Python 3

2009-08-25 Thread Nobody
On Sun, 23 Aug 2009 16:32:09 -0400, Albert Hopkins wrote: > What's different about Python 3 is that there is only unicode strings, > whereas Python 2 has a string type and a unicode type. Python 2 has "str" (char) and "unicode" (wchar) types. Python 3 has "bytes" (char) and "str" (wchar) types.

Re: web frameworks that support Python 3

2009-08-23 Thread Graham Dumpleton
On Aug 24, 6:34 am, Sebastian Wiesner wrote: > At Sunday 23 August 2009 22:13:16 you wrote:> I use Chinese and therefore > Unicode very heavily, and so Python 3 is > > an unavoidable choice for me. > > Python 2.x supports Unicode just as well as Python 3.  Every common web > framework works perfe

Re: web frameworks that support Python 3

2009-08-23 Thread Stefan Behnel
David Prager Branner wrote: > I use Chinese and therefore Unicode very heavily, and so Python 3 is > an unavoidable choice for me. As others noted before, this statement is not true by itself. > But I'm frustrated by the fact that > Django, Pylons, and TurboGears do not support Python 3 yet and

Re: web frameworks that support Python 3

2009-08-23 Thread Sebastian Wiesner
At Sunday 23 August 2009 22:13:16 you wrote: > I use Chinese and therefore Unicode very heavily, and so Python 3 is > an unavoidable choice for me. Python 2.x supports Unicode just as well as Python 3. Every common web framework works perfectly with unicode. In any case, there is bottle [1], whi

Re: web frameworks that support Python 3

2009-08-23 Thread Albert Hopkins
On Sun, 2009-08-23 at 13:13 -0700, David Prager Branner wrote: > I use Chinese and therefore Unicode very heavily, and so Python 3 is > an unavoidable choice for me. But I'm frustrated by the fact that > Django, Pylons, and TurboGears do not support Python 3 yet and > (according to their developmen