Hendrik van Rooyen schreef:
> "Roel Schroeven" <[EMAIL PROTECTED]> wrote:
>
>> Hendrik van Rooyen schreef:
>>> "Steve Holden" <[EMAIL PROTECTED]> wrote:
>>>
>>>
>>>> Perhaps in Belgium they prefer climbing mo
2*pi, 2*pi)
No conditionals in sight.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
Charles Sanders schreef:
> Roel Schroeven wrote:
>> I might be wrong of course, but can't you just use atan2? Only problem
>> is that it returns negative angles for quadrants 3 and 4, but that is
>> easily solved. In Python:
>>
>> from math import a
ef fill_missing(a, b):
if a is None:
a = fillchars
if b is None:
b = fillchars
return a, b
return fill_missing
map(make_fill_missing("N/A"), lista, listb))
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
n on Kent's Korner:
http://personalpages.tds.net/~kent37/kk/1.html
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
s only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
e a pain to use the
interface. I actually thought it was just me; I'm glad to see that at
least one other person has problems with it too.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
as panels, making them invisible in the
design window when places on them.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
c in ln)
0001FF20343536373839616263646566
BTW, in your examples it's more pythonic not to use range with an index
variable in the for-loop; you can loop directly over the contents of ln
like this:
import sys
for c in ln:
sys.stdout.write('%.2X' % ord(c))
print
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
en able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
in Alex' example has anything to with it: the assignment is to the list,
not the tuple.
And watch this (Python 2.4.2):
>>> tup = ([],)
>>> tup[0] += ['zap']
Traceback (most recent call last):
File "", line 1, in -toplevel-
tup[0] += ['zap']
TypeError: object does not support item assignment
So far that's the same as Alex' example, but look at the value of the
tuple now:
>>> tup
(['zap'],)
Despite the TypeError, the list *has* changed.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
nterpret the target in 'The target is only evaluated once'
more like an L-value in C/C++. That's not correct, of course, but I
didn't understand exactly how wrong it was until now.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
aware of the limits inherent in floating point arithmetic and in
conversions between decimal and binary fractions. See e.g.
http://docs.python.org/tut/node16.html
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
. In the second
case the object was already modified so the assignment doesn't
accomplish very much, but it still happens.
That explains why "tup[0] += ['zap']" both has an effect (tup[0] now
contains 'zap') and raises an exception: tup[0] is modified because it
is a list and lists support inplace addition, but the assignment fails
because tuples don't support item assignment.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
* have a side effect on variable d (as indeed it should not!)?
>
>>>> c = [1, 2, 3]
-> A list is created and assigned to c
>>>> d = c
-> That list is also assigned to d
>>>> d
> [1, 2, 3]
>>>> c = c + [4]
-> A new list object is created (the sum of the original one and the
list [4]) and assigned to c
>>>> c
> [1, 2, 3, 4]
-> c is now bound to the new list object
>>>> d
> [1, 2, 3]
-> ... while d is still bound to the original list object
I hope this clears up things a bit...
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
_1.9_rxe_d.jpg),
Ford (e.g. http://en.wikipedia.org/wiki/Image:Ford-Focus-wagon.jpg),
Toyota (e.g.
http://www.outrefranc.com/modeles/toyota/img/corollabreak3.jpg) and many
others.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
ement, you change them all (since
it's all the same object). Solution: make sure to create independent lists.
>>> grid = [[0] * 3 for i in range(3)]
>>> grid
[[0, 0, 0], [0, 0, 0], [0, 0, 0]]
>>> grid[0][0] = 1
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
turn the
same value.
To make a copy of a (assuming a is a dict), you can do:
copyOfA = dict(a)
or
copyOfA = a.copy()
or more generally
import copy
copyOfA = copy.copy(a)
Cheers,
Roel
--
If I have been able to see further, it was only because I stood
on the shoulders of giants.
have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
I don't know either, but if you find anything, please post it to this
list: I'm looking for such functionality too.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
tried with tail -F instead of tail -f? With a big F it uses the
name of the file instead of the file descriptor, and it keeps trying to
open the file. I'm not sure if it will work, but it's worth a shot.
--
If I have been able to see further, it was only because I stood
on the shoul
l
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
thing to it. That's not what happens: if
the function assigns to it, *all* mentions of the variable are
considered local.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
ex(s)
0
>>> s[0]
u'\u1d40'
>>> s == s[0]
False
In this case s[0] is not the full Unicode scalar, but instead just the
first part of the surrogate pair consisting of 0x1D40 (in s[0]) and
0x (in s[1]).
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
YI Kodos (http://kodos.sourceforge.net/) can be very useful for
developing, testing and debugging such regexes.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
icrosoft+evil... hm..
"This app can break" is the sentence used when I first heard about this
bug. Perhaps not evil enough, but it does sound more sensible.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
pect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
Lew schreef:
> Roel Schroeven wrote:
>> Laurent Pointal schreef:
>>> Summercool a écrit :
>>>> The meaning of a = b in object oriented languages.
>>>>
>>>
>>>
>>>
_files)
for file_index, i in enumerate(input_files):
print "--> %i/%i: %s" % (file_index + 1, nfiles, i)
ReadClasses(i)
Instead of item0, item1, ... , it's generally better to use a list, so
you can use item[0], item[1], ...
And finally, John Machin&
> open, though.
I'm afraid so. Sorry I can't help.
One thing that helped me in the past to speed up input is using memory
mapped I/O instead of stream I/O. But that was in C++ on Windows; I
don't know if the same applies to Python on Linux.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
Roel Schroeven schreef:
> import time
>
> input_files = ["./test_file0.txt", "./test_file1.txt"]
>
> total_start = time.time()
> data = {}
> for input_fn in input_files:
> file_start = time.time()
> f = file(input_fn, '
x27;, ['User logged in'])
>>> M.select('INBOX')
('OK', ['740'])
Always the same. Though the number changes if I receive or delete mail
of course.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
, though much less common. At least I think and
hope it's much less common, but actually I don't read all that much
forums, newsgroups etc. in Dutch.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
st covers quoting practices.
But note that inline replying isn't as wide-spread as I think it ought
to be. Places that don't have roots in Internet or Unix culture are much
more likely to accept and even encourage top-posting.
--
If I have been able to see further, it was only be
-- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
nd append a new one.
That's not correct. Python dictionaries are highly optimized and I
believe the time complexity is amortized constant (i.e. O(1)) for both
insertions and lookups.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newt
Ruan schreef:
> "Roel Schroeven" <[EMAIL PROTECTED]> wrote:
>> Ruan schreef:
>>> My confusion comes from the following piece of code:
>>>
>>> memo = {1:1, 2:1}
>>> def fib_memo(n):
>>> global memo
>>> if not n in memo
Dongsheng Ruan schreef:
> "Roel Schroeven" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>> Ruan schreef:
>>> Then how about Python's list?
>>>
>>> What is done exactly when list.append is executed?
>>>
>>
ter.
AFAIK that method is not commonly used since binary computers are very
good at dividing numbers by two, but it would be a good method on
ternary or decimal computers.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
Roel Schroeven schreef:
> [EMAIL PROTECTED] schreef:
>> I had considered this, but to halve, you need to divide by 2. Using
>> random, while potentially increasing the number of iterations, removes
>> the dependency of language tricks and division.
>
> It's p
because AFAIK the point of Python 3000 is to fix a number of
long-standing shortcomings, even if that means giving up a degree of
backward compatibility.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
make this task
really hard. However, it would be great if there was some tool that did
at least an 80% job of translation, pointing out areas where it wasn't
sure using comments or warnings. Perhaps such a tool could be based on
something like Pychecker."
--
If I have been able to
In other words, the point is that you can't translate loops literally
from C to Python. Which is nothing new, and I fail to see how that is
supposed to be a disadvantage.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
R
ython.org by clicking a link
on Microsoft's website, yes. If you get to www.python.org by manually
typing in the URL or by using a bookmark, no.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.p
Image.save() (also from PIL) to save it as a bmp.
Have a look at http://www.pythonware.com/library/pil/handbook/image.htm
for the details on those methods.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
orks
very well, is to use preprocessor directives:
#if 0
...
#endif
Works in both C and C++.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
#x27;foo', 'bar')
'foo\\bar'
>>> os.path.join('foo\\', 'bar')
'foo\\bar'
Greatly simplifies concatenating path components IMO.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
to specify components without leading or
trailing backslashes (unless you really want an absolute path):
>>> os.path.join('base', 'subdomain', 'images')
'base\\subdomain\\images'
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
t I had to import it separately, but just yesterday I
discovered import os and import os.path do the same thing. If I do one
of the two, doesn't matter which one, I can access both os.listdir and
os.path.join.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
).
Not that I know of use cases for other exceptions after StopIteration;
just clarifying what I think the OP means.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
e Flash to design the website itself.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
oach fails too. One more minus for Flash on
the web.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
zero 0
one 1
two 2
three 3
None 4
None 5
None 6
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
bject, ideally
something more focused on Python or C++ rather than Java?
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
Virgil Dupras schreef:
> On Jan 24, 1:30 pm, Roel Schroeven <[EMAIL PROTECTED]>
> wrote:
>> Virgil Dupras schreef:
>>
>>> I know what you mean by top-down vs. bottom-up and I used to have the
>>> same dilemma, but now I would tend to agree with Albert. Yo
alex23 schreef:
> On Jan 25, 5:44 am, Roel Schroeven <[EMAIL PROTECTED]>
> wrote:
>> I guess I just need to try somewhat harder to use TDD in my daily
>> coding. Apart from books, are there other resources that can help
>> beginners with TDD? Mailing list
now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
Nitro schreef:
>> Nevertheless time.time() shouldn't fail here unless DirectX is really
>> badly tinkering with my system.
>
> I can tell you more now. If I pass D3DCREATE_FPU_PRESERVE while creating
> the DirectX device the bug does not appear. This flag means "Direct3D
> defaults to single
Nitro schreef:
> Ok, my final solution is to add the D3DCREATE_FPU_PRESERVE flag. It didn't
> harm performance in a noticeable way at all. I was under the impression
> SSE would be affected by this, too. Additionally I was under the
> impression that float precision would suffice for time.tim
ke this:
from collections import deque
q = deque([a, b, c])
while q:
x = q.popleft()
# ...
q.append(y)
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
s is about. If you want a nicely
rounded number, use print or str() or the % operator.
*Only* when you use repr() or when the interactive interpreter uses it
to print the value of the expression, you get something that doesn't
look as nice.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
y after 10 changes the first
> change isn't as important anymore (unless you want to backtrack and
> find out who started the Project in the first place and what it's
> original purpose was).
That is certainly useful, but IMO that's what version control systems
are for.
--
returns None.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
out creator of Eliza?
>
> What is Eliza?
Does that question interest you?
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
culation errors). The solution was to use a flag
(PRESERVE_PRECISION or something like that) in the CreateDevice() call
(it was a C++ project).
If it's something else, I'm afraid I can't help.
--
The saddest aspect of life right now is that science gathers knowledge
faster than soci
se os.startfile() which works hyperlinks and many
types of files, but only works on Windows (it does the same as
double-clicking in Windows Explorer).
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
est
hello
""" % (from_addr, ', '.join(to_addr))
smtp = smtplib.SMTP(...)
smtp.sendmail(from_addr, to_addr + bcc_addr, msg)
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
() and
test_spam_eggs().
I've read "test-driven development" by David Astels, but somehow it
seems that the issues I encounter in practice don't come up in his examples.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdo
Thanks for your answer. I still don't understand completely though. I
suppose it's me, but I've been trying to understand some of this for
quite some and somehow I can't seem to wrap my head around it.
Steven D'Aprano schreef:
On Sat, 29 Nov 2008 11:36:56 +0100, R
Steven D'Aprano schreef:
[..]
Thank you for elaborate answer, Steven. I think I'm really starting to
get it now.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.o
al for short strings, but try your solution on a string with length
1 and see the difference. On my computer the O(n) version takes
0.008 seconds, while your version takes 8.6 seconds. That's 1000 times
slower.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
to a more convenient[2] location, or edit the file name to remove the dot.
I don't think so: the average Windows user will never even see the files
in that directory; they only see the files in the 'Desktop' and 'My
Documents' folders.
--
The saddest aspect of l
mind. I suppose
there are many more that I can't think of at the moment.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
projects/nose/#usage, under
"Options")).
It took me a while too before I could figure what was wrong, and how to
solve it.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
t; add another sentence specifically covering the case for
>>> an empty iterable.
>> as one of the instigators in this thread, I'm +1 on this solution.
>
> [...] and simply adding something like "or the iterable is empty"
> might head off future confusion.
+
right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
Hendrik van Rooyen schreef:
> : "Roel Schroeven" wrote:
>> ...
> This is all true in the case of a job that starts, runs and finishes.
> I am not so sure it applies to something that has a long life.
It's true that I'm talking about work units with relat
ndeed, that is exactly the reason why I find it difficult to read
nested loop comprehensions, and why I almost never use them.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
edge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
hat there's a large difference
between byte code and machine code (in Python's case; I haven't looked
at other languages), and that it's a bit silly to try to trivialize that
difference.
--
The saddest aspect of life right now is that science gathers knowledge
faster th
Wow this resulted in far more reactions than I had expected ...
[EMAIL PROTECTED] schreef:
On 19 mai, 15:30, Roel Schroeven <[EMAIL PROTECTED]>
wrote:
Bruno Desthuilliers schreef:
1/ being interpreted or compiled (for whatever definition of these
terms) is not a property of a language,
re I need to know what is calulated first i.e the not or the
'OR/AND's
if var not in (A, B, C):
do_something()
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
identity = string.maketrans('', '')
'www.example.com'.translate(identity, 'cmowz.')
'exaple'
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
g
you buy from the shelf in a regular computer store). So you almost
certainly need the AMD64 version of Python.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
stance) so Robert has a valid
point.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
n row
> accordingly."""
> ppp1,ppp2,ppp3=0.0,0.0,0.0
You forgot the : after def cross(u, v)
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
Steven D'Aprano schreef:
> On Sat, 29 Mar 2008 10:11:28 +0100, Roel Schroeven wrote:
>
>> Steven D'Aprano schreef:
>>> On Fri, 28 Mar 2008 16:59:59 +0100, Robert Bossy wrote:
>>>
>>>> Gabriel Genellina wrote:
>>>>> That's
D340.PDF)
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
x27;s our tradition, too.
I assumed it was a mix-up with the recent thread with the same name:
http://groups.google.com/group/comp.lang.python/browse_thread/thread/f3832259c6da530
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
--
hers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
://www.py2exe.org/) for that.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
", "credits" or "license" for more information.
>>> import sqlite3
>>>
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
Roel Schroeven schreef:
Cameron Laird schreef:
I now suspect that my 2.5 packaging has something to do with 64-bit builds;
all my 32-bit Ubuntu servers have Python 2.5.2, while the 64-bit ones are at
Python 2.5.
Strange: my 64-bit Ubuntu 8.04 has Python 2.5.2, with working sqlite:
(mine is
ng and the first
unsigned int.
--
The saddest aspect of life right now is that science gathers knowledge
faster than society gathers wisdom.
-- Isaac Asimov
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
ee further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
IMO. If I can find a few spare minutes I might
try to do put a bit more effort in it and send it in.
--
If I have been able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
able to see further, it was only because I stood
on the shoulders of giants. -- Isaac Newton
Roel Schroeven
--
http://mail.python.org/mailman/listinfo/python-list
301 - 400 of 456 matches
Mail list logo