Diez B. Roggisch wrote:
> Alex Hunsley wrote:
>
>> I can remember Python having a feature which allowed you to add some
>> simple tests to your code, something like adding console output to your
>> actual python script, like so:
>>
>>
>> >>>
I can remember Python having a feature which allowed you to add some
simple tests to your code, something like adding console output to your
actual python script, like so:
>>> 1+1
2
>>> 2*7
14
... then python would actually run these queries and check that the
expected results occurred.
I
Xah Lee wrote:
> I'm sorry to trouble everyone. But as you might know, due to my
> controversial writings and style, recently John Bokma lobbied people to
> complaint to my web hosting provider. After exchanging a few emails, my
> web hosting provider sent me a 30-day account cancellation notice la
Xah Lee wrote:
> i've long time been interested in algorithmic mathematical art. That
> is, mathematical or algorithmic visual art works that are generated by
> computer such that the program's source code reflects the algorithmic
> essence of the visual quality in the art work. (for detail, see
>
Xah Lee wrote:
> i've long time been interested in algorithmic mathematical art. That
> is, mathematical or algorithmic visual art works that are generated by
> computer such that the program's source code reflects the algorithmic
> essence of the visual quality in the art work. (for detail, see
>
Xah Lee wrote:
> A Lambda Logo Tour
> (and why LISP languages using λ as logo should not be looked upon
> kindly)
>
> Xah Lee, 2002-02
>
> Dear lispers,
For the love of Java! Where is the Java in this post?
Underwear related off topic trivia:
At university we worked out that Y-fronts weren't Y-
[EMAIL PROTECTED] wrote:
> Programing Languiges Are Ment to be free. That is why i am starting The
> Coo De Tar
> thats french for Blow of state
No, "Coup d'état" is French.
http://en.wikipedia.org/wiki/Coup
> it is a flash/java
> alternative and if you are going to use a server side languige
James Stroud wrote:
> Alex Hunsley wrote:
>
>> Can anyone recommend some code for creating drop-down menus in tkinter?
>> To be absolutely clear, here's an example of a drop-down:
>>
>> http://www.google.co.uk/preferences?hl=en
>> (see the language selec
Alex Hunsley wrote:
> Can anyone recommend some code for creating drop-down menus in tkinter?
> To be absolutely clear, here's an example of a drop-down:
>
> http://www.google.co.uk/preferences?hl=en
> (see the language selection widget)
>
> I've found the odd bit
Can anyone recommend some code for creating drop-down menus in tkinter?
To be absolutely clear, here's an example of a drop-down:
http://www.google.co.uk/preferences?hl=en
(see the language selection widget)
I've found the odd bit of code here and there, such as:
http://infohost.nmt.edu/tcc/cgi/p
Alex Hunsley wrote:
> Fredrik Lundh wrote:
>
>> Alex Hunsley wrote:
>>
>>
>>> 2) Why should someone willing to help you enter into a private email
>>> discussion? Newsgroups like this exist to help people
>>
>>
>>
>> looks like &q
Fredrik Lundh wrote:
> Alex Hunsley wrote:
>
>
>>2) Why should someone willing to help you enter into a private email
>>discussion? Newsgroups like this exist to help people
>
>
> looks like "Fan" wants to run his own group:
>
> ht
Gerhard Häring wrote:
> Alex Hunsley wrote:
>
>> [EMAIL PROTECTED] wrote:
>>
>>> Need python Pro at [EMAIL PROTECTED] , if u wanna help,
>>
>> [...]
>> 2) Why should someone willing to help you enter into a private email
>> discussion? [...]
Steven D'Aprano wrote:
> On Mon, 31 Oct 2005 10:35:19 +0000, Alex Hunsley wrote:
>
>
>>There's no really specific questions in this post, but I'm looking for
>>people's thought on the issues within...
>>
>>
>>The two main versions I&
[EMAIL PROTECTED] wrote:
> Need python Pro at [EMAIL PROTECTED] , if u wanna help,
1) Why would anyone want to help you when you're not even willing to
spend the (small) time and effort to spell simple words like "you"
correctly or make sure your post actually makes sense? Start by helping
you
Jorge Godoy wrote:
> Alex Hunsley <[EMAIL PROTECTED]> writes:
>
>
>>Btw, can you recall the subject line of the thread? I'd like to google groups
>>for it and have a read of that thread...
>>ta!
>
>
> Search for: "alex martelli pychecker&
Steven D'Aprano wrote:
> On Mon, 31 Oct 2005 10:39:40 +0000, Alex Hunsley wrote:
>
>
>>I know that I can catch access to unknown attributes with code something
>>like the following:
>>
>>class example:
>> def __getattr__(self, name):
>>
Jorge Godoy wrote:
> Alex Hunsley <[EMAIL PROTECTED]> writes:
>
>
>>Sorry, I wasn't being clear. What I should have said is that I don't like the
>>idea of a typo in an assignment causing the assigning of the wrong thing.
>>e.g. imagine a si
Jorge Godoy wrote:
> Alex Hunsley <[EMAIL PROTECTED]> writes:
>
>
>>Sorry, I wasn't being clear. What I should have said is that I don't like the
>>idea of a typo in an assignment causing the assigning of the wrong thing.
>>e.g. imagine a si
bruno at modulix wrote:
> Alex Hunsley wrote:
>
>>There's no really specific questions in this post, but I'm looking for
>>people's thought on the issues within...
>>
>>
>>The two main versions I've encountered for data pseudo-hiding
&
I know that I can catch access to unknown attributes with code something
like the following:
class example:
def __getattr__(self, name):
if name == 'age':
return __age
else:
raise AttributeError
but is there an existing mixin helper class in
There's no really specific questions in this post, but I'm looking for
people's thought on the issues within...
The two main versions I've encountered for data pseudo-hiding
(encapsulation) in python are:
method 1:
_X - (single underscore) - just cosmetic, a convention to let someone
I've seen a few discussion about the use of 'super' in Python, including
the opinion that 'super' should only be used to solve inheritance
diamond problem. (And that a constructor that wants to call the
superclass methods should just call them by name and forget about super.)
What is people's op
Symantec antivirus has apparently picked up a virus in my Python 2.4
(under cygwin):
Scan type: Scheduled Scan
Event: Threat Found!
Threat: Bloodhound.Exploit.49
File: C:\cygwin\lib\python2.4\email\MIMEBase.pyc
Location: Quarantine
Action taken: Quarantine succeeded
There's info to be foun
Alex Hunsley wrote:
Pretty simple seeming question, but can't find answer via google or docs...
I am using urllib2 as follows:
handle = urlopen(req, postdata) # and URL to return a handle on
...
print handle.info()
the print statement prints out the headers:
Content-Type: text
Pretty simple seeming question, but can't find answer via google or docs...
I am using urllib2 as follows:
handle = urlopen(req, postdata) # and URL to return a handle
on
...
print handle.info()
the print statement prints out the headers:
Content-Type: text/html;charset=ISO-8859-1
Cont
[EMAIL PROTECTED] wrote:
Good News!
Do you know how simple it is to go to Heaven after this life has ended?
Some people believe that belonging to a local church, temple, mosque or
synagogue will get them to Heaven.
Others believe that water baptism, obeying the ten commandments or just
being a good
I'm writing a test script in python for pulling web pages from a web
server using urllib2 and cookielib. Since the main thing I am testing is
what happens when concurrent requests are made to the web server, I need
to make several requests concurrently, which I'll do from different
threads in m
28 matches
Mail list logo