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
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
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.
>
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
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
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
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
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
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
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
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
[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
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
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
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
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
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
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
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
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
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
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
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
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)
101 - 124 of 124 matches
Mail list logo