En Fri, 31 Aug 2007 17:58:24 -0300, Lamonte Harris <[EMAIL PROTECTED]>
escribi�:
> I've searched Google, and other search engines to try to find out how
> super() works. Can someone explain in short detail how super() works? I
> may and may not need to know this information, but it is good to
On Sep 3, 2:21 am, llothar <[EMAIL PROTECTED]> wrote:
> I'm afraid that the GIL is killing the usefullness of python for some
> types of applications now where 4,8 oder 64 threads on a chip are here
> or comming soon.
>
> What is the status about that for the future of python?
This is FAQ. You wil
Hi,
> Any suggestions for adding my path to sys.path permanently?
You can write a file in Lib/site-packages with a 'pth' extension (the
name itself doesn't matter) containing the path you want to add.
Example:
MyCustomLib.pth:
C:/docs/utils
And be careful with path separator on win32. It should
> En Fri, 31 Aug 2007 17:58:24 -0300, Lamonte Harris <[EMAIL PROTECTED]>
> escribi?:
>
> > I've searched Google, and other search engines to try to find out how
> > super() works. Can someone explain in short detail how super() works? I
> > may and may not need to know this information, but it is
2007-08-30, Dr. José Contreras <[EMAIL PROTECTED]>:
> Gente Inteligente y Distinguida, soy un aficionado y apelo a Ustedes, para
> resolver éste problema. Para WebMaster de Google, me solicita instalar o
> ejecución de pitón, cómo comprenderán no dispongo de ningún guru de web, por
> lo que solicit
> I was trying to motivate the idea by means of analogy. This is a
> legitimate thing to do. It helps lead people to a conceptual
> understanding long before they understand the minutae.
You're mixing terms again. Analogy is saying 'something is like
something else.' What you are saying is 'S
>
> cd /proc
> for i in ls [0-9]*/status
> do
> echo $i `grep '^Name' $i | cut -f2` | sed 's/\/status//g'
> done
>
Um...
cd /proc
for i in `ls [0-9]*/status`
do
echo $i `grep '^Name' $i | cut -f2` | sed 's/\/status//g'
done
---
Let the wookie win.
--
http://mail.python.org/mailma
Thanks!
It worked straightforward, and it's easier than messing with the
enviromental variables or the registry.
BTW, I'm still wondering how did Autohotkey got included in sys.path
(there are no other .pht files on my PC)
Regards,
Sergio
On 9/3/07, olivier <[EMAIL PROTECTED]> wrote:
> Hi,
>
>
Lamonte Harris wrote:
> Error Message in cmd:
> Traceback (most recent call last):
> File "wniamp_lastest5_playlist.py", line 25, in
> response = urllib2.urlopen(request)
> File "C:\Python25\lib\urllib2.py", line 121, in urlopen
> return _opener.open(url, data)
> File "C:\Python25\li
Grzegorz Słodkowicz wrote:
> You're mixing terms again. Analogy is saying 'something is like
> something else.'
Actually, that's a simile.
--
http://mail.python.org/mailman/listinfo/python-list
Hi
I am new to Python and have recieved this error message when trying to
instantiate an object from a class from another file within the same
directory and wondered what I have done wrong.
I have a Step.py class:
class Step(object)
def __init__(self, sName):
"Initialise a new Ste
ShowMeDo.com, a website offering over 361 instructional screencasts about
topics both Python and non-Python, has announced their first winner of the
month for the most-played video. And the winner is:
"Learn Django: Create a Wiki in 20 minutes"
by Siddharta Govindaraj, founder of Silver Str
On 9/3/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Hi
>
> I am new to Python and have recieved this error message when trying to
> instantiate an object from a class from another file within the same
> directory and wondered what I have done wrong.
>
> I have a Step.py class:
> class Step(ob
On Sep 3, 9:15 am, Michele Simionato <[EMAIL PROTECTED]>
wrote:
> On Sep 3, 2:21 am, llothar <[EMAIL PROTECTED]> wrote:
>
> My personal opinion (and I am not the only one in the Python
> community) is that
> if you want to scale the way to go is to use processes, not threads,
> so removing the GIL
Jeff Rush wrote:
> ShowMeDo.com, a website offering over 361 instructional screencasts about
> topics both Python and non-Python, has announced their first winner of the
> month for the most-played video. And the winner is:
>
> "Learn Django: Create a Wiki in 20 minutes"
>
> by Siddharta G
On Sep 3, 10:48 am, [EMAIL PROTECTED] wrote:
> Hi
>
> I am new to Python and have recieved this error message when trying to
> instantiate an object from a class from another file within the same
> directory and wondered what I have done wrong.
>
> I have a Step.py class:
> class Step(object)
>
[EMAIL PROTECTED] wrote:
> Hi
>
> I am new to Python and have recieved this error message when trying to
> instantiate an object from a class from another file within the same
> directory and wondered what I have done wrong.
>
> I have a Step.py class:
> class Step(object)
> def __init_
Jonas Schneider wrote:
> Hi guys,
>
> I´m experiencing weird error messages while installing MySQL-python
> with easy_install... I have no idea where the errors come from.
>
> Read the whole output at http://pastebin.com/m3859cf40
> It´s really a lot...
>
> Someone got ideas?
The pastebin erro
Amit Khemka a écrit :
(snip)
> The exception is being raised as you are being confused about the
> names ie: you have a class named "Step" in a module named "Step.py" .
Actually, the module is named 'Step', not 'Setp.py' !-)
--
http://mail.python.org/mailman/listinfo/python-list
The first regional Python unconference is coming to Houston on September 15-16
(Sat-Sun). Being held at the Texas Learning & Computing Center on the
University of Houston main campus, this is a FREE event for Pythoneers from
all over the Texas region.
http://pycamp.python.org/Texas/
And bein
On 9/3/07, Bruno Desthuilliers
<[EMAIL PROTECTED]> wrote:
> Amit Khemka a écrit :
> (snip)
> > The exception is being raised as you are being confused about the
> > names ie: you have a class named "Step" in a module named "Step.py" .
>
>
> Actually, the module is named 'Step', not 'Setp.py' !-)
>
Brian Munroe a écrit :
> On Sep 2, 3:33 pm, Steven D'Aprano <[EMAIL PROTECTED]
> cybersource.com.au> wrote:
>
>> In a nutshell, like all double-underscore methods, __setattr__ are for
>> overriding behaviour in your own classes. With very few exceptions, you
>> shouldn't need to directly call doub
hello i need some help with ZSI module
i want to use the web service located here
www.ebob42.com/cgi-bin/NumberToWordsInDutch.exe/soap/IDutch
the wsdl file :
http://www.ebob42.com/cgi-bin/NumberToWordsInDutch.exe/wsdl/IDutch
that web service is very simple , the function NumToStr converts numbers
Michele Simionato <[EMAIL PROTECTED]> writes:
> On Sep 3, 2:21 am, llothar <[EMAIL PROTECTED]> wrote:
> > I'm afraid that the GIL is killing the usefullness of python for
> > some types of applications now where 4,8 oder 64 threads on a chip
> > are here or comming soon.
>
> This is FAQ. You will
I was wondering (and maybe i still do) about this GIL "problem". I am
relatively new to Python (less than a year) and when i started to
think about it i said: "Oh, this IS a problem". But when i dig a
little more, i found that "Ah, maybe it isn't".
I strongly believe that the best usage of multiple
I was wondering (and maybe i still do) about this GIL "problem". I am
relatively new to Python (less than a year) and when i started to
think about it i said: "Oh, this IS a problem". But when i dig a
little more, i found that "Ah, maybe it isn't".
I strongly believe that the best usage of multiple
Gabriel Genellina wrote:
> En Wed, 29 Aug 2007 07:32:21 -0300, BJörn Lindqvist <[EMAIL PROTECTED]>
> escribi�:
>
>> On 8/24/07, Gabriel Genellina <[EMAIL PROTECTED]> wrote:
>>> En Thu, 23 Aug 2007 09:20:21 -0300, BJörn Lindqvist <[EMAIL PROTECTED]>
>>> escribi�:
>>>
def check_user_logged_in
I was wondering (and maybe i still do) about this GIL "problem". I am
relatively new to Python (less than a year) and when i started to
think about it i said: "Oh, this IS a problem". But when i dig a
little more, i found that "Ah, maybe it isn't".
I strongly believe that the best usage of multiple
Hi,
But why does it show varied difference in the time between a and b
instance creations when __metaclass__ hook is used and when not used in
class Y ? I dont understand that point !
KM
On 9/1/07, Michele Simionato <[EMAIL PROTECTED]> wrote:
>
> On Sep 1, 6:07 pm, Steve Holden <[EMAIL PROTECTE
On 2007-08-26, tooru honda <[EMAIL PROTECTED]> wrote:
> By incorporating Alex's code, I got another performance boost of 20%.
> It is mostly due to Alex's more efficient implementation of block random
> than my own version.
If I understand correctly that you are using urandom as a random
genera
Thank you for your help that seems to have done the trick.
You are correct Diez B. Roggisch that I come from a java background!
I have a new tiny problem I can't understand either.
Withing Step.py I have the following method
def isCompleted(self):
"Check whether data step has been processed"
Grzegorz Słodkowicz wrote:
> In fact, a proper vector in physics has 4 features: point of
> application, magnitude, direction and sense.
>
OK, help me out here: What 'direction' does |Ψ> (a state-vector in
quantum mechanics) have? Also, doesn't sense directly follow from the
point of applicatio
[EMAIL PROTECTED] wrote:
> Thank you for your help that seems to have done the trick.
> You are correct Diez B. Roggisch that I come from a java background!
>
> I have a new tiny problem I can't understand either.
> Withing Step.py I have the following method
>
> def isCompleted(self):
> "C
[EMAIL PROTECTED] a écrit :
> Thank you for your help that seems to have done the trick.
> You are correct Diez B. Roggisch that I come from a java background!
>
> I have a new tiny problem I can't understand either.
> Withing Step.py I have the following method
>
> def isCompleted(self):
> "
[EMAIL PROTECTED] wrote:
> Thank you for your help that seems to have done the trick.
> You are correct Diez B. Roggisch that I come from a java background!
>
> I have a new tiny problem I can't understand either.
> Withing Step.py I have the following method
>
> def isCompleted(self):
> "Che
We urgently require following skill set for singapore client
SAP CO-COPA Functional Lead: Person with a strong Costing background.
Should have hands on SAP "COPA" experience
Minimum two implementations in Controling based Profitability Analysis
(COPA) and Product Costing (COPC) in the SAP COPA
Gerardo Herzig schrieb:
>
> @is_logued_in
> def change_pass():
>bla
>bla
>
> And so on for all the other functions who needs that the user is still
> loged in.
>
> where obviosly the is_logued_in() function will determine if the dude is
> still loged in, and THEN execute change_pass().
On 9/3/07, Wildemar Wildenburger <[EMAIL PROTECTED]> wrote:
>
> Grzegorz Słodkowicz wrote:
> > In fact, a proper vector in physics has 4 features: point of
> > application, magnitude, direction and sense.
> >
> OK, help me out here: What 'direction' does |Ψ> (a state-vector in
> quantum mechanics)
On Sep 2, 6:13 am, Grzegorz S odkowicz <[EMAIL PROTECTED]> wrote:
> In fact, a proper vector in physics has 4 features: point of
> application, magnitude, direction and sense.
so whats the "point of application" of the sum of two vectors? Do
tell.
--
http://mail.python.org/mailman/listinfo/py
[EMAIL PROTECTED] wrote:
> Thank you for your help that seems to have done the trick.
> You are correct Diez B. Roggisch that I come from a java background!
>
> I have a new tiny problem I can't understand either.
> Withing Step.py I have the following method
>
> def isCompleted(self):
> "C
Lamonte Harris wrote:
>I've searched Google, and other search engines to try to find out how
>super() works. Can someone explain in short detail how super() works? I
>may and may not need to know this information, but it is good to know.
>
>
>
There is at least one explanation in the python.or
Hi,
I have an url which redirects the client to another url. If I paste
the url into a browser, it works fine. If I open it via
urllib2.urlopen() I get the following error:
Traceback (most recent call last):
File "...\crawlRawDocuments.py", line 16, in
body = urlopen(url).read()
File "C:
[Tim Golden]
>> To do the obvious, can you open a socket connection
>> to the domain you're using?
>>
>>
>> from socket import socket
>> socket ().connect (("DOMAINHERE", 80))
>>
>>
>>
>> or does it give you the same error?
[Lamonte Harris]
> Yeah I basically got the same error.
>
> T
On Mon, 03 Sep 2007 04:37:54 +, Brian Munroe wrote:
> On Sep 2, 3:33 pm, Steven D'Aprano <[EMAIL PROTECTED]
> cybersource.com.au> wrote:
>
>
>> In a nutshell, like all double-underscore methods, __setattr__ are for
>> overriding behaviour in your own classes. With very few exceptions, you
>>
Thanks for all the answers to my question. I think what I need to take
away from this is that xrange is an object - I thought it was just
some loop construct, and that maths is slow in python - so avoid
pathological looping.I remember the first time I tried Objective-C on
OS X I used the NSNumber c
On 2007-08-31, herman <[EMAIL PROTECTED]> wrote:
> Hi,
>
> In my python program, I would to like to spwan 5 threads, for the them
> for 5 minutes maximum and the continue. Here is my script:
>
> threads = []
>
> for j in range(5):
> t = MyThread()
>
On 3 Sep, 15:39, [EMAIL PROTECTED] wrote:
> Thanks for all the answers to my question. I think what I need to take
> away from this is that xrange is an object
Indeed, but using xrange can be faster than converting your "for"
loops to "while" loops plus a counter; I converted your code to use
the
Martin v. Löwis a écrit :
>>> (2) it is a interpretation language
>> Not quite. It's compiled to byte-code - just like Java (would you call
>> Java an 'interpreted language' ?)
>
> Python is not implemented like Java. In Java (at least in HotSpot),
> the byte code is further compiled to machine co
On Sep 2, 4:22 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> On Sep 1, 10:48 pm, Jerry <[EMAIL PROTECTED]> wrote:
>
> > andrew,
>
> > I would try looking into Windows automation with
> > Python.http://www.google.com/search?q=windows+automation+pythonshouldget
> > you started. The winGuiAut
Hi,
I need to calculate this probability P!/{n \choose p}, varying both n
and p, n takes values in this range [512:1024] and p in [2:12].
So i write this code in python:
def factorial(n):
result=1
if n==0: return 1
for i in xrange(1, abs(n)+1):
result = i*re
On Sep 3, 6:34 am, Steven D'Aprano <[EMAIL PROTECTED]
cybersource.com.au> wrote:
> The underscore versions are for customizing the lookup process, not for
> dynamically looking up names. If your class needs to do something non-
> standard when you write obj.name, you might need to write methods
>
I posted this question to the vtk mailing list last week:
I've been Googling and wandering through the class references
most of the afternoon, but I can't figure out how to get the
triangles out of the vtkPolyData that vtkDelaunay2D produces?
I can get the vertex corredinates like this:
On 2007-09-02, Robert Kern <[EMAIL PROTECTED]> wrote:
>> Can anybody point me to a Delaunay triangulation module (for
>> Win32)? I'm currently using http://flub.stuffwillmade.org/delny/
>> under Linux, but I have been unable to find a build for
>> Windows. I don't have the tools (or skills) to b
Andrea wrote:
> Hi,
> I need to calculate this probability P!/{n \choose p}, varying both n
> and p, n takes values in this range [512:1024] and p in [2:12].
> So i write this code in python:
>
> def factorial(n):
> result=1
> if n==0: return 1
> for i in xrange(1, abs(n)+1):
>
Il Mon, 03 Sep 2007 07:56:10 -0700, Andrea ha scritto:
> [cut]
>
> I want to call factorial(2)//binomial(1024,2) for example, in this way
> trivially I obtain 0 as probability, how can I obtain the probability
> forcing this division to output extremely small real numbers
int to float will h
On Sep 3, 3:56 pm, Andrea <[EMAIL PROTECTED]> wrote:
> Hi,
> I need to calculate this probability P!/{n \choose p}, varying both n
> and p, n takes values in this range [512:1024] and p in [2:12].
> So i write this code in python:
>
> def factorial(n):
> result=1
> if n==0: return 1
> [cut]
> But this code ends up waiting 5 minutes for **each** thread. that is
> not what I want. I just want to wait for 5 minutes for all threads. how
> can I do that?
I've written a little code for you using threading. Hope it will help you:
#! /usr/bin/env python
# -*- coding: utf8 -*-
impo
>
> The others spottet the error I missed. But I can offer something else:
>
> http://dirtsimple.org/2004/12/python-is-not-java.html
>
> It's a worthy read for someone coming from Java, needing time to adjust.
>
> Diez- Hide quoted text -
>
> - Show quoted text -
That deffinately was a useful rea
On Mon, 03 Sep 2007 16:13:28 +, christophertidy wrote:
> Within my main.py file I have
>
> class Main(object):
> stepStore = StepStore()
>
> @staticmethod
> def createDepSteps():
>
> stepStore.addStep([bol7, pre5])
> ...
>
> @staticmethod
>
[EMAIL PROTECTED] wrote:
>
>>
>> The others spottet the error I missed. But I can offer something else:
>>
>> http://dirtsimple.org/2004/12/python-is-not-java.html
>>
>> It's a worthy read for someone coming from Java, needing time to adjust.
>>
>> Diez- Hide quoted text -
>>
>> - Show quoted te
Antoon Pardon <[EMAIL PROTECTED]> writes:
> If I understand correctly that you are using urandom as a random
> generator I wouldn't trust too much on this performance. Urandom
> uses the systemwide entropy-pool. If other programs need this pool
> too, your performance can drop spectaculary.
No th
On 3 sep, 10:56, Andrea <[EMAIL PROTECTED]> wrote:
> def binomial(n, k):
> assert n>0 and isinstance(n, (int, long)) and isinstance(k,
> (int,long))
Don't use assert to check whether the parameters have the right value.
assert should be used to claim that a certain condition always hold i
linuxprog wrote:
> hello i need some help with ZSI module
> i want to use the web service located here
> www.ebob42.com/cgi-bin/NumberToWordsInDutch.exe/soap/IDutch
> the wsdl file :
> http://www.ebob42.com/cgi-bin/NumberToWordsInDutch.exe/wsdl/IDutch
> that web service is very simple , the funct
Lamonte Harris wrote:
> Like in math where you put letters that represent numbers for place
> holders to try to find the answer type complex numbers?
>
Not quite. Relating them to (plane) trigonometry is much closer to the mark.
Complex numbers are like a subclass of real numbers that elegantly
Achim Domma wrote:
> urllib2.HTTPError: HTTP Error 400: Bad Request
>
> I'm using Python 2.5.1 and Google did not help. Any hint on how to
> fix or debug this problem?
Use e. g. wireshark to look at the raw stream data and check if the
request is malformed.
Regards,
Björn
--
BOFH excuse #12
Hello all,
I have a question which might be simple or need some work around.
I want to do something like this. My class/instance has a dict as a
property. I want the instance to catch the change in the dict (change
in some values, addition/deletion of key/value etc) to be recognized by
the clas
> I have an url which redirects the client to another url. If I paste
> the url into a browser, it works fine. If I open it via
Any redirection is setup using either of the 301, 302, 303, 307 return codes of
HTTP. Atleast, thats what standard determines.
> File "C:\Python25\lib\urllib2.py", li
'''
Task:-
to apply a translation array to an array
of 3D vertex coordinates to produce the
resulting location of each vertices.
Translation array and vertex coordinates taken from
a Truespace COB file.
The text in the COB file looks like this:-
T
> ShowMeDo.com, a website offering over 361 instructional screencasts about
> topics both Python and non-Python, has announced their first winner of the
> month for the most-played video. And the winner is:
>
> "Learn Django: Create a Wiki in 20 minutes"
>
> by Siddharta Govindaraj, founder
* Terry Reedy (Fri, 31 Aug 2007 02:28:36 -0400)
> "Marc 'BlackJack' Rintsch" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> | On Thu, 30 Aug 2007 17:09:36 +1000, Ben Finney wrote:
> | > [EMAIL PROTECTED] writes:
> | >> What's with the index() function of lists throwing an exceptio
On Sep 3, 7:00 pm, <[EMAIL PROTECTED]> wrote:
> Hello all,
>
> I have a question which might be simple or need some work around.
>
> I want to do something like this. My class/instance has a dict as a
> property. I want the instance to catch the change in the dict (change
> in some values, additi
* Ben Finney (Thu, 30 Aug 2007 18:02:15 +1000)
> Bruno Desthuilliers <[EMAIL PROTECTED]> writes:
> > What's with using your brain instead of whining ?
>
> Now now, no need for snappiness.
Actually there was. The OP's claim
| There are a million situations where you can have an item not be in
| a
Arnaud Delobelle <[EMAIL PROTECTED]> wrote:
> On Sep 3, 7:00 pm, <[EMAIL PROTECTED]> wrote:
>>
>> I want to do something like this. My class/instance has a dict as a
>> property. I want the instance to catch the change in the dict (change
>> in some values, addition/deletion of key/value etc) to
On Sep 2, 9:18 am, "Richard B. Gilbert" <[EMAIL PROTECTED]>
wrote:
> Zentrader wrote:
> > On Aug 28, 4:50 am, "Richard B. Gilbert" <[EMAIL PROTECTED]>
> > wrote:
>
> >>>Unless, of course, someone has a working "Killbot". If anyone has such
>
> >>a thing, please kill that "MI5victim" moron as well!
Hi,
Say you have the following XML:
item 1
item 2
my group
Is there an easy way (i.e. without writing a sax/dom parser) to load
this into a (number of) Python object(s), manipulate the instance, and
save the result back to XML?
-Samuel
--
http://mail.python.org/mailman/listi
Samuel napisał(a):
> Say you have the following XML:
>
>
> item 1
>
>
> item 2
>
>
>
>
> my group
>
>
> Is there an easy way (i.e. without writing a sax/dom parser) to load
> this into a (number of) Python object(s), manipulate the instance, and
> save the result back to XML?
[EMAIL PROTECTED] a écrit :
(snip)
>
> I have another little question before I finish today:
> I am currently struggling to use a global variable in my static
> functions. I'll explain further
>
> Within my main.py file I have
>
> class Main(object):
> stepStore = StepStore()
>
> @stati
On Sep 3, 10:19 pm, Jarek Zgoda <[EMAIL PROTECTED]> wrote:
> > Is there an easy way (i.e. without writing a sax/dom parser) to load
> > this into a (number of) Python object(s), manipulate the instance, and
> > save the result back to XML?
>
> Yea, use ElementTree and you'd get a bunch of nested li
Russ a écrit :
(snip)
> Frankly, Mr. Holden, I'm getting a bit tired of the clannish behavior
> here, where
> "outsiders" like me are held to a higher standard than your "insider"
> friends. I don't know who you are, nor do I care what you and your
> little group think about me.
If you took tim
Samuel wrote:
> Hi,
>
> Say you have the following XML:
>
>
> item 1
>
>
> item 2
>
>
>
>
> my group
>
>
> Is there an easy way (i.e. without writing a sax/dom parser) to load
> this into a (number of) Python object(s), manipulate the instance, and
> save the result back to XM
QOTW: "If there were a protein that could only be folded by proving the
Riemann Hypothesis, the gene that coded for it would quickly get weeded
out of the gene pool." - Scott Aaaronson
http://scottaaronson.com/blog/?p=266
"We read Knuth so you don't have to." - Tim Peters
The first
Python author and trainer Mark Lutz will be teaching another
3-day Python class at a conference center in Longmont, Colorado,
on October 23-25, 2007.
This is a public training session open to individual enrollments,
and covers the same topics as the 3-day onsite sessions that Mark
teaches, with ha
On Sep 3, 8:47 pm, <[EMAIL PROTECTED]> wrote:
[...]
> My intention was to have a propery 'sum' in my object, and which has sum
> of all the values() of the dict (i have code to make sure that the value
> of dict are all numeric). I could just the propery being calculated
> everytime the property
On Sep 3, 12:57 pm, [EMAIL PROTECTED] wrote:
> On Sep 2, 9:18 am, "Richard B. Gilbert" <[EMAIL PROTECTED]>
> wrote:
>
>
> HEY! NOBODY BASHES THE TOOTH FAIRY!
>
-Shrug- I fucked her. mvm
--
http://mail.python.org/mailman/listinfo/python-list
Barry OGrady napisał(a):
> What could anyone have against mongrels?
You clearly don't know how abusive ROR can be.
--
Jarek Zgoda
http://jpa.berlios.de/
--
http://mail.python.org/mailman/listinfo/python-list
Hi out there,
After a few years working silently I'm very pleased to announce here the
so much awaited new version of 'lfm'.
Last File Manager is a simple but powerful file manager for the
UNIX console. It's written in Python, using curses module.
Licensed under GNU Public License version 3.
Som
Python for Mobile Interfaces is a clarion call for Pythonistas to
pioneer the future of alternative user interfaces for mobile phones,
PDA's, and wearable computers, including voice recognition, gesture
recognition, and wearable computing.
www.awaretek.com
--
http://mail.python.org/mailman/listi
This works:
# Module spam.py
import eggs
print getattr(eggs, 'omelet')(100)
That is, I just call the function omelet inside the module eggs and
evaulate it with the argument 100.
But what if the function 'omelet' is in the module where I do the
getattr (that is, in spam.py). If I do any of th
> Is Maya a different python build than what is contained at python.org?
> If so, I suggest you get your C program to work with the latest python
> build
> from python.org. Then see if you can get it to work with the Maya
> version.
Ok, did that. If I write a normal C++ program and use the pytho
Thorsten Kampe <[EMAIL PROTECTED]> writes:
> * Ben Finney (Thu, 30 Aug 2007 18:02:15 +1000)
> > Bruno Desthuilliers <[EMAIL PROTECTED]> writes:
> > > What's with using your brain instead of whining ?
> >
> > Now now, no need for snappiness.
>
> Actually there was. The OP's claim [...] ...is just
On Sep 4, 5:47 am, <[EMAIL PROTECTED]> wrote:
> Arnaud Delobelle <[EMAIL PROTECTED]> wrote:
> > On Sep 3, 7:00 pm, <[EMAIL PROTECTED]> wrote:
>
> >> I want to do something like this. My class/instance has a dict as a
> >> property. I want the instance to catch the change in the dict (change
> >>
En Mon, 03 Sep 2007 06:43:27 -0300, linuxprog <[EMAIL PROTECTED]>
escribi�:
> import IDutchservice_services
> soap =
> IDutchservice_services.IDutchbindingSOAP("www.ebob42.com/cgi-bin/NumberToWordsInDutch.exe/soap/IDutch")
> ok = IDutchservice_services.NumToStr0Request()
> ok.Num=5
> print soap.
Here are the statistics from Google Trends:
http://benyang22a.blogspot.com/2007/09/perl-vs-python.html
--
http://mail.python.org/mailman/listinfo/python-list
Stefan Drees wrote:
> Dear Crew of the Python Starship,
>
> after a short email exchange of thoughts with Christian Tismer, that he
> might take over again the hosting of the ship or silently give over some
> of its remains to a museum, he encouraged me, to let go after four years
> of hosting,
En Mon, 03 Sep 2007 07:39:05 -0300, km <[EMAIL PROTECTED]>
escribi�:
> But why does it show varied difference in the time between a and b
> instance creations when __metaclass__ hook is used and when not used in
> class Y ? I dont understand that point !
What do you expect from a._created, b.
On Tue, 04 Sep 2007 00:32:23 -
Ben <[EMAIL PROTECTED]> wrote:
> Here are the statistics from Google Trends:
>
> http://benyang22a.blogspot.com/2007/09/perl-vs-python.html
>
This chart is showing that amount of python programers is smaller every
year :(
--
http://mail.python.org/mailman/lis
On Sep 4, 10:49 am, Sulsa <[EMAIL PROTECTED]> wrote:
> On Tue, 04 Sep 2007 00:32:23 -
>
> Ben <[EMAIL PROTECTED]> wrote:
> > Here are the statistics from Google Trends:
>
> >http://benyang22a.blogspot.com/2007/09/perl-vs-python.html
>
> This chart is showing that amount of python programers is
Asun Friere wrote:
> How do you figure that? Isn't the chart showing the frequency of
> those particular terms combined as a fraction of the total search
> volume on Google?
Who knows? The graph has no labeling or calibration for the y-axis, so
it's meaningless.
--
Erik Max Francis && [EMAIL
Boris Borcic <[EMAIL PROTECTED]> wrote:
> Complex numbers are like a subclass of real numbers
I wouldn't use the term "subclass". It certainly doesn't apply in the same
sense it applies in OOPLs. For example, you can't say, "All complex
numbers are real numbers". In fact, just the opposite.
Hello.
Python 3.0.a1 has been released. I'm trying to get the hang of the new
string formatting in the form:
>>> a = "{0}".format(5.66)
>>> a
'5.66'
There are more options in PEP 3101 (fill, alignment, etc.), but I'm having
trouble implementing them. The doc has not yet been written. I haven't
1 - 100 of 134 matches
Mail list logo