Istvan Albert wrote:
> On May 19, 3:33 am, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote:
>
>> >That would be invalid syntax since the third line is an assignment
>> > with target identifiers separated only by spaces.
>>
>> Plus, the identifier starts with a number (even though 6 is not DIGIT
>
Osiris wrote:
> On Sat, 30 Dec 2006 13:19:28 -0800, Erik Max Francis <[EMAIL PROTECTED]>
> wrote:
>
>>Osiris wrote:
>>
>>> I have these pieces of C-code (NOT C++ !!) I want to call from Python.
>>> I found Boost.
>>> I have MS Visual Studio 2005 with C++.
>>>
>>> is this the idea:
>>> I write th
js wrote:
> Just my curiosity.
> Can python beats perl at speed of grep-like processing?
>
>
> $ wget http://www.gutenberg.org/files/7999/7999-h.zip
> $ unzip 7999-h.zip
> $ cd 7999-h
> $ cat *.htm > bigfile
> $ du -h bigfile
> du -h bigfile
> 8.2M bigfile
>
> -- grep.pl --
>
Felix Benner wrote:
> Christophe Cavalaria schrieb:
>> Steven D'Aprano wrote:
>
>> You gave the reason in your post : because other people who are using
>> software that doesn't understand tabs as YOU expect them to have problems
>> with your code.
>&g
Steven D'Aprano wrote:
> On Thu, 28 Dec 2006 09:26:28 +0100, Sebastian 'lunar' Wiesner wrote:
>
>> It is, and especially the problems with tabs shows you, why it is good
>> practice to follow the standard in your own code, too...
>
> I don't know what "problems" with tabs you are talking about.
Vincent Delporte wrote:
> On Sun, 17 Dec 2006 09:37:04 +0100, [EMAIL PROTECTED] (Luc Heinrich)
> wrote:
>>Crossplatform toolkits/frameworks suck. All of them. No exception. If
>>you want your app to look *AND* feel great on all platform, abstract the
>>core of your application and embed it in plat
Sandra-24 wrote:
> On 12/16/06, The Night Blogger <[EMAIL PROTECTED]> wrote:
>> Can someone recommend me a good API for writing a sexy looking (Rich UI
>> like WinForms) shrink wrap application
>
>> My requirement is that the application needs to look as good on Windows
>> as on the Apple Mac
>
Paul Rubin wrote:
> Kirk Sluder <[EMAIL PROTECTED]> writes:
>> Personally, I've always preferred use the imperative to describe
>> basic math rather than the passive. This would seem to map better to
>> RPN than infix.
>
> For writing down complicated, nested expressions too? That's very
> unus
Paul Rubin wrote:
> André Thieme <[EMAIL PROTECTED]> writes:
>> def nif(num, pos, zero, neg):
>>if num > 0:
>> return pos
>>else:
>> if num == 0:
>>return zero
>> else:
>>return neg
>
> def nif(num, pos, zero, neg):
>return (neg, zero, pos)[cmp(num, 0)+1
Christopher Weimann wrote:
> On 05/19/2006-07:18AM, Duncan Booth wrote:
>>
>> My experience of programming with either spaces or tabs has taught me
>> that tabs are evil not for themselves, but simply because no matter how
>> hard you try they always end up being mixed with spaces.
>>
>
> Swap
Delaney, Timothy C (Timothy) wrote:
> John Roth wrote:
>
>> result = "".join([str(x) for x in list])
>
> As of 2.4, you should use a generator expression here instead (unless
> you require backwards-compatibility with 2.3).
>
> result = ''.join(str(x) for x in iterable)
>
> Easier to read,
Fabio Zadrozny wrote:
> Hi All,
>
> PyDev - Python IDE (Python development enviroment for Eclipse) version
> 0.9.0 has just been released.
>
> This release supports python 2.4 and has PyLint 0.6 integrated.
> Code completion had some improvements too.
>
> Check the homepage for more details (ht
Steven Bethard wrote:
> Fuzzyman wrote:
> > Cameron Laird wrote:
> > [snip..]
> >
> >>This is a serious issue.
> >>
> >>It's also one that brings Tcl, mentioned several
> >>times in this thread, back into focus. Tcl presents
> >>the notion of "safe interpreter", that is, a sub-
> >>ordin
Qvx wrote:
> Hello,
>
> I'we written a simple web deployment program which scans for the
> changes made to local copy of web site. Changed files are than
> packaged into a zip file and deployed to web server.
>
> Now here's the catch. Changes are computed using (1) log file from the
> last deplo
Fuzzyman wrote:
>
> Miki Tebeka wrote:
>> Hello Fuzzyman,
>>
>> > 3) Simple Version Control program for single programmer. A very
> simple
>> > way of doing version control/releases for small projects with only
> a
>> > single programmer. [3]
>> Subversion (and CVS) are dead simple to install and
bwobbones wrote:
> Hi all,
>
> I'm a java programmer struggling to come to terms with python - bear
> with me!
>
> I'm trying to subclass a class, and I want to be able to see it's
> attributes also. Here are my classes:
>
> two.py
> *
> from one import one
>
>
[EMAIL PROTECTED] wrote:
> Hello All,
> I am trying to convince my client to use Python in his new product. He
> is worried about the license issues. Can somebody there to point me any
> good commercial applications developed using python ?. The licence
> clearly says Python can be used for commer
17 matches
Mail list logo