Re: Mailing list hosting?

2005-01-01 Thread weblord
free mailing list offer - limited time http://nabaza.com/autoresponders.htm -- http://mail.python.org/mailman/listinfo/python-list

Re: OT: spacing of code in Google Groups

2005-01-01 Thread JanC
Terry Reedy schreef: > "JanC" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] >> I don't know if gmane keeps formating of messages intact when >> posting? That could be an alternative too... > > Reading posts via gmane with Outlook Express preserves leading spaces > just fine. How

Frameworks for "Non-Content Oriented Web Apps"

2005-01-01 Thread mirnazim
Hi, There are great Python Web Application Framework. But most of them are meant for content oriented web apps. Is there something that can ease the development of application that are not content oriented(I call them "NON CONTENT-ORIENTED WEB APPLICATIONS" because I don't know what else to call

Re: Frameworks for "Non-Content Oriented Web Apps"

2005-01-01 Thread Tim Churches
[EMAIL PROTECTED] wrote: Hi, There are great Python Web Application Framework. But most of them are meant for content oriented web apps. Is there something that can ease the development of application that are not content oriented(I call them "NON CONTENT-ORIENTED WEB APPLICATIONS" because I don't

Re: Frameworks for "Non-Content Oriented Web Apps"

2005-01-01 Thread Paul Rubin
Tim Churches <[EMAIL PROTECTED]> writes: > Can you give some URL for publicly accessible examples of what you > mean by a "NON CONTENT-ORIENTED WEB APPLICATIONS", so we can get a > better idea of what you mean? I don't think there was anything unclear about it. A spreadsheet might be a good examp

Re: when wxPython update to python2.4?

2005-01-01 Thread Nick Coghlan
alang_yl wrote: > i can't wait. > wxPython 2.5 already has a version which works with Python 2.4 (grab it from www.wxpython.org). For the wxPython 2.4 series, I understand Robin is planning a release which will both integrate the 2.4 series into the new wxPython versioning scheme, and also inclu

Re: Frameworks for "Non-Content Oriented Web Apps"

2005-01-01 Thread Nick Coghlan
[EMAIL PROTECTED] wrote: But is there some sort of framework or something that is actually meant for such web apps,application that make heavy use of forms, have very high amount of user interaction etc. Hmm, PJE's PEAK might be worth having a look at: http://peak.telecommunity.com/ However, I'm n

Re: The Industry choice

2005-01-01 Thread Nick Coghlan
Paul Rubin wrote: I don't see that big a problem. The current Python sorting routine operates on instances of class "object" and calls the __cmp__ method to do comparisons. Every class of sortable objects either defines a __cmp__ method or inherits one from some superclass, and sort calls those m

Re: screen clear question

2005-01-01 Thread Craig Ringer
On Sun, 2005-01-02 at 11:31, jcollins wrote: > Is there a command in Python to clear the screen? That is without writing > multiple blank lines. Without knowing what 'screen' you're talking about, it's hard to say. If you mean clearing a terminal, you can call 'tput clear' or '/usr/bin/clear' on

Re: PEP 288 ponderings

2005-01-01 Thread Ian Bicking
Steven Bethard wrote: PEP 288 was mentioned in one of the lambda threads and so I ended up reading it for the first time recently. I definitely don't like the idea of a magical __self__ variable that isn't declared anywhere. It also seemed to me like generator attributes don't really solve the

Re: The Industry choice

2005-01-01 Thread Donn Cave
Quoth Paul Rubin : | [EMAIL PROTECTED] writes: |> Overall I agree with you and would like to have OPTIONAL static type |> declarations in Python, as has often been discussed. But without |> facilities for generic programming, such as templates in C++, static |> type declar

Re: Frameworks for "Non-Content Oriented Web Apps"

2005-01-01 Thread Ian Bicking
[EMAIL PROTECTED] wrote: There are great Python Web Application Framework. But most of them are meant for content oriented web apps. Is there something that can ease the development of application that are not content oriented(I call them "NON CONTENT-ORIENTED WEB APPLICATIONS" because I don't know

Re: Any Python XML Data Binding Utilities Avaiable?

2005-01-01 Thread Uche Ogbuji
Sounds like generateDS is closest to what you want: http://www.rexx.com/~dkuhlman/generateDS.html If you can bind from instances only and don't need schema, see Amara Bindery: http://uche.ogbuji.net/tech/4Suite/amara/ Also consider Gnosis Utilities and ElementTree. -- Uche Ogbuji

Re: screen clear question

2005-01-01 Thread Daniel Bickett
import os # windows os.system("cls") # bash ( mac, linux ) os.system("clear") That's all I can account for. Daniel Bickett -- http://mail.python.org/mailman/listinfo/python-list

Re: Frameworks for "Non-Content Oriented Web Apps"

2005-01-01 Thread Stephen Thorne
On 1 Jan 2005 20:51:06 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > But is there some sort of framework or something that is actually meant > for such web apps,application that make heavy use of forms, have very > high amount of user interaction etc. > Yeah, nevow, by those crazy twisted

Re: The Industry choice

2005-01-01 Thread Paul Rubin
"Donn Cave" <[EMAIL PROTECTED]> writes: > Yes, it would be really weird if Python went that way, and the > sort of idle speculations we were reading recently from Guido > sure sounded like he knows better. But it's not like there aren't > some interesting issues farther on downstream there, in the

Re: PEP 288 ponderings

2005-01-01 Thread Nick Coghlan
Ian Bicking wrote: Using a one-element list is kind of annoying, because it isn't clear out of context that it's just a way of creating shared state. But it's okay, work right now, and provides the exact same functionality. Uh, isn't shared state what classes were invented for? Py> class mygen(o

Re: What can I do with Python ??

2005-01-01 Thread LutherRevisited
Speaking of the many libraries people have written I thought I'd mention pychess. Don't remember where I found it, but it's easy enough to find on a search engine. That's the whole reason I discovered python, searching for a good algorithm to use in parsing chess pgn files. -- http://mail.python

<    1   2