Re: I want to ask you the most important question of your life. The question is: Are you saved? It is not a question of how good you are, nor if you are a church member, but are you saved? Are you sure you will go to Heaven when you die? The reason some people don't know for sure if they are going to Heaven when they die is because they just don't know. The good news is that you can know for sure you are going to Heaven. May 24, 2005 10:49:20 am

2005-05-24 Thread The Ghost In The Machine
In comp.os.linux.advocacy, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote on 24 May 2005 07:48:47 -0700 <[EMAIL PROTECTED]>: > > THE MOST IMPORTANT QUESTION OF YOUR LIFE > > This is the most important question of your life. > > The question is: Are you saved? I'm tempted to ask if you're *shaved* (I

Re: pygame 1.6 for windows (python2.4)

2005-05-24 Thread bc
Thanks for the reply, Will... I have been to the site, but I get a "URL not found error" when I try the pygame 1.6 for python24 link; I guess I will just keep trying until the HTML is fixed. -- http://mail.python.org/mailman/listinfo/python-list

Re: PAM authentication?

2005-05-24 Thread Diez Roggisch
Gary Wilson Jr wrote: > I would like my application to be able to authenticate through PAM. Is > there any code out there that implements this? All I could find was PyPAM > (http://www.pangalactic.org/PyPAM/), which doesn't look like it has been > touched in almost 6 years and requires python1.5. >

Re: searching substrings with interpositions

2005-05-24 Thread Andrew Dalke
Claudio Grondi wrote: > Note: code below is intended to help to clarify things only, > so that a bunch of examples can be tested. > If you need bugfree production quality code, maybe > someone else can provide it. Still not tested enough to ensure that it's bug free, but more concise. Here's one

Re: python24.zip

2005-05-24 Thread "Martin v. Löwis"
Dieter Maurer wrote: > The comparison between warm start (few disc io) and cold start > (much disc io) tells you that the import process is highly > io dominated (for cold starts). Correct. However, I would expect that the contents of existing directories is cached, and it might be that the absenc

Re: pygame 1.6 for windows (python2.4)

2005-05-24 Thread Will McGugan
bc wrote: > Thanks for the reply, Will... I have been to the site, but I get a "URL > not found error" when I try the pygame 1.6 for python24 link; I guess > I will just keep trying until the HTML is fixed. > Does seem to be broken at the moment. I've uploaded a copy to my server.. http://www.w

Re: reference counting and file objects

2005-05-24 Thread "Martin v. Löwis"
Paul Rubin wrote: >>>lines = file("myfile","r").readlines() > > It's released even if the exception is raised inside readlines? I think so, but only because readlines is a builtin function. If it wasn't, there would be a stack frame for readlines, which would have "self" as a local variable. As

Re: I want to ask you the most important question of your life. The quest

2005-05-24 Thread phil-news-nospam
In comp.lang.c [EMAIL PROTECTED] wrote: | | THE MOST IMPORTANT QUESTION OF YOUR LIFE | | This is the most important question of your life. | | The question is: Are you saved? ^X^S I am now :-) -- - | Phil Howard KA9W

Tkinter Text Question

2005-05-24 Thread James Stroud
Hello All, I would like to get the index of the character closest to the pointer in a Text, something like Canvas.find_closest(). I want it to bind to ''. Does anybody know how this might be done? Thank you, James -- James Stroud UCLA-DOE Institute for Genomics and Proteomics Box 951570 Los A

Re: Access lotus notes using Python

2005-05-24 Thread Dan Poirier
Peter Dembinski <[EMAIL PROTECTED]> writes: > "Sateesh" <[EMAIL PROTECTED]> writes: > >> Hi, >> Is it possible to access Lotus notes using Python? Can anyone >> provide me some pointers? > > jython + LN Java bindings may be usable Yes. I do this all the time. -- Dan Poirier -- Email: my last n

Re: Melbourne (Australia) Python User Group

2005-05-24 Thread Maurice LING
Hi Anthony, count me in... Cheers Maurice Anthony wrote: > Hi all, > > I'm interested in starting a Python user group in Melbourne, > Australia. So far there seems to have been a lot of interest from > various parties, but for whatever reasons it's fizzled out. So I've > decided that if there's

Re: How to use protocols.msn.FileSend and protocols.msnFileReceive

2005-05-24 Thread yamadora1999
[EMAIL PROTECTED] (yamadora1999) wrote in message news:<[EMAIL PROTECTED]>... > How to use protocols.msn.FileSend and FileReceive? > Please show me a example. I am very sorry. :) -- http://mail.python.org/mailman/listinfo/python-list

Re: What are OOP's Jargons and Complexities?

2005-05-24 Thread Wibble
Thats how common lisp specifies a vector. Andreas, your link indicates that lisp is a Weakly typed language not strong. Theres no compile time type semantics, at least in CommonLisp, MacLisp, ZetaLisp or FranzLisp. (setq foo #(1 2 3)) (setq foo 1) (setq foo "Whatever") Theres no type associate

Re: What are OOP's Jargons and Complexities?

2005-05-24 Thread Paul Rubin
Wibble <[EMAIL PROTECTED]> writes: > Andreas, your link indicates that lisp is a Weakly typed language not > strong. Theres no compile time type semantics, at least in CommonLisp, > MacLisp, ZetaLisp or FranzLisp. There are runtime semantics that enforce types. > From your link: >When the t

Re: What are OOP's Jargons and Complexities?

2005-05-24 Thread beliavsky
Thomas G. Marshall wrote: > > I am not familiar with modern Fortran. Surely it at least has argument > > prototyping by now? Since the 1990 standard, if Fortran subroutines and functions are placed in MODULEs, or if INTERFACEs are provided, the compiler checks that procedures are called with the

Counting occurences of words in a list of strings

2005-05-24 Thread Travers Naran
Here's the basic idea. I have a dictionary of substrings (the substrings stored as keys). I have a list of strings. I want to find out, for each word in the dictionary, how many times the substring occurs non-overlapping occurrences there are in the list of strings. This is the best I could

Re: Counting occurences of words in a list of strings

2005-05-24 Thread Robert Kern
Travers Naran wrote: > Here's the basic idea. I have a dictionary of substrings (the substrings > stored as keys). I have a list of strings. I want to find out, for each > word in the dictionary, how many times the substring occurs non-overlapping > occurrences there are in the list of string

Re: Counting occurences of words in a list of strings

2005-05-24 Thread John Machin
Travers Naran wrote: > Here's the basic idea. I have a dictionary of substrings (the > substrings stored as keys). I have a list of strings. I want to find > out, for each word in the dictionary, how many times the substring > occurs non-overlapping occurrences there are in the list of string

Has ComboBox ctrl in Tkinter?

2005-05-24 Thread ÒÊÃÉɽÈË
i have not find the ComboBox in Tkinter,has it? where to get the doc about how to use combobox ctrl? -- http://mail.python.org/mailman/listinfo/python-list

Re: Linux Python Module using PythonC/ API

2005-05-24 Thread John Machin
David Legault wrote: > Hi Jeff thanx for the reply > > I'm a complete noob when it comes to Linux and trying to learn how to manage > the compilation process of the same objects that work on windows. > > The complete linking line is this. > > -- > > all: main > > main: utm.o ut

Re: Manipulating mailboxes

2005-05-24 Thread Donn Cave
Quoth Laszlo Zsolt Nagy <[EMAIL PROTECTED]>: | I need to create a daemon that sits on a server and forwards some | e-mails. (Well not only that, it needs to change header information | before forwarding and also insert messages into a database). The mailbox | module is fine but I do not see a wa

Re: Counting occurences of words in a list of strings

2005-05-24 Thread Travers Naran
John Machin wrote: > Are you comparing BMH implemented in Python with str.count() implemented > in C? Tee-hee. Yes. I figured out that was the problem pretty quickly and just went back to count(). > 1. A pure Python suggestion: > > Presuming there is a character SEP that cannot appear in the

Re: Counting occurences of words in a list of strings

2005-05-24 Thread John Machin
Travers Naran wrote: > John Machin wrote: > >> 3. If you want to roll your own, start with Gonzalo Navarro's >> publications: http://www.dcc.uchile.cl/~gnavarro/subj-multiple.html > > > I don't suffer from NMH syndrome. If ahocorasick does the job, or even > count, I'm OK with that. Do you m

Re: What are OOP's Jargons and Complexities?

2005-05-24 Thread Xah Lee
The Rise of “Static” versus “Instance” variables In a normal programing language, variables inside functions are used by the function, called local variables. In OOP paradigm, as we've seen, super-subroutines (classes) are assigned to variables (instantiation), and the inner-subroutines (methods)

<    1   2