To this therad, I received 2 kinds of anwsers:
- some that help me in
- and other where some guy thinks that has the right to rule if my
need has some value
Thanksfully, Python is an open platform, and with the help obtained
here, now I can fullfill my needs.
Who is the arrogant?
On 22 mayo, 11:5
En Sun, 25 May 2008 06:15:45 -0300, Duncan Booth <[EMAIL PROTECTED]> escribió:
> "Gabriel Genellina" <[EMAIL PROTECTED]> wrote:
>> En Thu, 22 May 2008 07:55:44 -0300, Duncan Booth
>> <[EMAIL PROTECTED]> escribió:
>>>
>>> It might be worth considering an alternative approach here: a
>>> formatted ex
"Gabriel Genellina" <[EMAIL PROTECTED]> wrote:
> En Thu, 22 May 2008 07:55:44 -0300, Duncan Booth
> <[EMAIL PROTECTED]> escribió:
>> Bruno Desthuilliers <[EMAIL PROTECTED]>
>> wrote:
>>
>>> Not to say that your concerns are pointless, and that things cannot
>>> be improved somehow, but this is n
En Thu, 22 May 2008 07:55:44 -0300, Duncan Booth <[EMAIL PROTECTED]> escribió:
> Bruno Desthuilliers <[EMAIL PROTECTED]> wrote:
>
>> Not to say that your concerns are pointless, and that things cannot be
>> improved somehow, but this is not that trivial, and there may be
>> ambuiguities in some not
Agustin Villena a écrit :
On May 22, 5:19 am, Bruno Desthuilliers wrote:
Agustin Villena a écrit :
And not that useful - why would one care about the function being
defined in class X or Y when one have the exact file and line ?
I have 3 reasons:
1) My developing time is expended running uni
Agustin Villena wrote:
I don't see things like you, because I'm accustomed to design my
software
though classes and see the code in an "object = software's functional
atom/component" way
I agree that python's dynamic nature make things complicated here, but
for me it its just
an implementation pr
On May 22, 5:19 am, Bruno Desthuilliers wrote:
> Agustin Villena a écrit :
>
> >> And not that useful - why would one care about the function being
> >> defined in class X or Y when one have the exact file and line ?
>
> > I have 3 reasons:
>
> > 1) My developing time is expended running unit test
Bruno Desthuilliers <[EMAIL PROTECTED]> wrote:
> Not to say that your concerns are pointless, and that things cannot be
> improved somehow, but this is not that trivial, and there may be
> ambuiguities in some not so rare cases.
It might be worth considering an alternative approach here: a form
Agustin Villena a écrit :
And not that useful - why would one care about the function being
defined in class X or Y when one have the exact file and line ?
I have 3 reasons:
1) My developing time is expended running unit tests and browsing
tracebacks to find which is the real problem. Knowing
On 20 mayo, 12:10, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote:
> En Mon, 19 May 2008 10:54:05 -0300, Agustin Villena
> <[EMAIL PROTECTED]> escribió:
>
> > On May 18, 4:31 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote:
> >> Agustin Villena schrieb:
>
> >> > is there anyway to show the class of
> And not that useful - why would one care about the function being
> defined in class X or Y when one have the exact file and line ?
I have 3 reasons:
1) My developing time is expended running unit tests and browsing
tracebacks to find which is the real problem. Knowing the offender
class (inst
Richard G Riley a écrit :
Bruno Desthuilliers <[EMAIL PROTECTED]> writes:
Richard G Riley a écrit :
Bruno Desthuilliers <[EMAIL PROTECTED]> writes:
(snip)
And not that useful - why would one care about the function being
defined in class X or Y when one have the exact file and line ?
Very
Bruno Desthuilliers <[EMAIL PROTECTED]> writes:
> Richard G Riley a écrit :
>> Bruno Desthuilliers <[EMAIL PROTECTED]> writes:
>
> (snip)
>
>>> And not that useful - why would one care about the function being
>>> defined in class X or Y when one have the exact file and line ?
>>
>> Very obvious I
Richard G Riley a écrit :
Bruno Desthuilliers <[EMAIL PROTECTED]> writes:
(snip)
And not that useful - why would one care about the function being
defined in class X or Y when one have the exact file and line ?
Very obvious I would think. One can develop ones own interactive class
browser a
Bruno Desthuilliers <[EMAIL PROTECTED]> writes:
> Gabriel Genellina a écrit :
>> En Sun, 18 May 2008 17:31:44 -0300, Diez B. Roggisch
>> <[EMAIL PROTECTED]> escribió:
>>> Agustin Villena schrieb:
>>
is there anyway to show the class of a method in an exception's
traceback?
I wa
Gabriel Genellina a écrit :
En Sun, 18 May 2008 17:31:44 -0300, Diez B. Roggisch
<[EMAIL PROTECTED]> escribió:
Agustin Villena schrieb:
is there anyway to show the class of a method in an exception's
traceback?
I want to improve the line File "G:\dev\exceptions\sample.py",
line 3, in foo
t
En Mon, 19 May 2008 10:54:05 -0300, Agustin Villena
<[EMAIL PROTECTED]> escribió:
On May 18, 4:31 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote:
Agustin Villena schrieb:
> is there anyway to show the class of amethodin an exception's
> traceback?
> I want to improve the line
> File "G:\dev\
On May 18, 4:31 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote:
> Agustin Villena schrieb:
>
>
>
> > Hi!
>
> > is there anyway to show the class of amethodin an exception's
> > traceback?
>
> > For example, the next code
>
> > class Some(object):
> > def foo(self,x):
> > raise Excepti
>
> That by itself is not enough, the method could be inherited; one should
> walk the base classes in the MRO to find the right one. And deal with
> classmethods and staticmethods. And decorators that don't preserve meta
> information... Hmmm, I think it isn't so trivial as it seems.
You might e
En Sun, 18 May 2008 17:31:44 -0300, Diez B. Roggisch <[EMAIL PROTECTED]>
escribió:
> Agustin Villena schrieb:
>> is there anyway to show the class of a method in an exception's
>> traceback?
>>
>> I want to improve the line
>> File "G:\dev\exceptions\sample.py", line 3, in foo
>>
>> to
>> File "G
Agustin Villena schrieb:
Hi!
is there anyway to show the class of a method in an exception's
traceback?
For example, the next code
class Some(object):
def foo(self,x):
raise Exception(x)
obj = Some()
obj.foo("some arg")
produces the next traceback
Traceback (most recent call las
21 matches
Mail list logo