472,111 Members | 1,873 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,111 software developers and data experts.

TypeError: unsupported operand type(s) for -: 'Decimal' and 'Decimal'. Why?

This is a very strange exception raised from somewhere in our program.
I have no idea how this happen. And don't know how to reproduce. It
just occurs from time to time.

Can anyone give me some suggestion to fix this?

Thanks.

--
Gilbert

Jul 30 '07 #1
8 9201
Gilbert Fine wrote:
This is a very strange exception raised from somewhere in our program.
I have no idea how this happen. And don't know how to reproduce. It
just occurs from time to time.

Can anyone give me some suggestion to fix this?
If it's raised from "somewhere in your program" the first this to do is
disable the except clause that is apparently stopping you from getting a
full traceback, then post that traceback with an appropriate code snippet.

People on this list are good at guessing, but it's better to give then
some hard information to work with.

Otherwise you are calling the shop (garage?) and saying "My car doesn't
work, can you tell me how to fix it, please?"

regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
--------------- Asciimercial ------------------
Get on the web: Blog, lens and tag the Internet
Many services currently offer free registration
----------- Thank You for Reading -------------
Jul 30 '07 #2
Gilbert Fine wrote:
This is a very strange exception raised from somewhere in our program.
I have no idea how this happen. And don't know how to reproduce. It
just occurs from time to time.

Can anyone give me some suggestion to fix this?
If it's raised from "somewhere in your program" the first this to do is
disable the except clause that is apparently stopping you from getting a
full traceback, then post that traceback with an appropriate code snippet.

People on this list are good at guessing, but it's better to give then
some hard information to work with.

Otherwise you are calling the shop (garage?) and saying "My car doesn't
work, can you tell me how to fix it, please?"

regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
--------------- Asciimercial ------------------
Get on the web: Blog, lens and tag the Internet
Many services currently offer free registration
----------- Thank You for Reading -------------

Jul 30 '07 #3
On Mon, 30 Jul 2007 03:36:33 -0700, Gilbert Fine wrote:
This is a very strange exception raised from somewhere in our program.
I have no idea how this happen. And don't know how to reproduce. It
just occurs from time to time.
Maybe different `Decimal`\s? Here's how to reproduce such a traceback:

In [20]: from decimal import Decimal

In [21]: a = Decimal()

In [22]: class Decimal(object):
....: pass
....:

In [23]: b = Decimal()

In [24]: a - b
<type 'exceptions.TypeError' Traceback (most recent call last)

/home/bj/<ipython consolein <module>()

<type 'exceptions.TypeError'>: unsupported operand type(s) for -: 'Decimal' and 'Decimal'

Ciao,
Marc 'BlackJack' Rintsch
Jul 30 '07 #4
Marc 'BlackJack' Rintsch <bj****@gmx.netwrote:
On Mon, 30 Jul 2007 03:36:33 -0700, Gilbert Fine wrote:
>This is a very strange exception raised from somewhere in our
program. I have no idea how this happen. And don't know how to
reproduce. It just occurs from time to time.

Maybe different `Decimal`\s? Here's how to reproduce such a
traceback:
<snip>

Or even just one Decimal type but not one which supports subtraction:
>>class Decimal(object):
pass
>>a = Decimal()
b = Decimal()
a-b
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
a-b
TypeError: unsupported operand type(s) for -: 'Decimal' and 'Decimal'

Another option of course is that Decimal() did support substraction but
someone deleted it:
>>from decimal import Decimal
del Decimal.__sub__
Decimal()-Decimal()
Traceback (most recent call last):
File "<pyshell#15>", line 1, in <module>
Decimal()-Decimal()
TypeError: unsupported operand type(s) for -: 'Decimal' and 'Decimal'

Jul 30 '07 #5
Thanks. I think I have some direction to do logging, to get more
information about this problem.

It seems that I don't get used to dynamic language yet.

--
Gilbert

On Jul 30, 7:20 pm, Duncan Booth <duncan.bo...@invalid.invalidwrote:
Marc 'BlackJack' Rintsch <bj_...@gmx.netwrote:
On Mon, 30 Jul 2007 03:36:33 -0700, Gilbert Fine wrote:
This is a very strange exception raised from somewhere in our
program. I have no idea how this happen. And don't know how to
reproduce. It just occurs from time to time.
Maybe different `Decimal`\s? Here's how to reproduce such a
traceback:

<snip>

Or even just one Decimal type but not one which supports subtraction:
>class Decimal(object):

pass
>a = Decimal()
b = Decimal()
a-b

Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
a-b
TypeError: unsupported operand type(s) for -: 'Decimal' and 'Decimal'

Another option of course is that Decimal() did support substraction but
someone deleted it:
>from decimal import Decimal
del Decimal.__sub__
Decimal()-Decimal()

Traceback (most recent call last):
File "<pyshell#15>", line 1, in <module>
Decimal()-Decimal()
TypeError: unsupported operand type(s) for -: 'Decimal' and 'Decimal'

Jul 30 '07 #6
from decimal import Decimal
>
In [21]: a = Decimal()

In [22]: class Decimal(object):
....: pass
....:

In [23]: b = Decimal()

In [24]: a - b
Perhaps I don't understand what you are doing here, but on line 22 you
overload Decimal. If you just have
a = Decimal()
b = Decimal()
print a-b yields 0. decimal.Decimal() can be subtracted from
decimal.Decimal(). decimal.Decimal() can not be subtracted from class
Decimal(object). I would assume that they are different types. Using
the original code, print type(a), type(b).

Jul 30 '07 #7
On Jul 31, 9:31 am, Zentrader <zentrad...@gmail.comwrote:
from decimal import Decimal
In [21]: a = Decimal()
In [22]: class Decimal(object):
....: pass
....:
In [23]: b = Decimal()
In [24]: a - b

Perhaps I don't understand what you are doing here, but on line 22 you
overload Decimal.
In the utter absence of any clues from the OP, Marc was demonstrating
one possible way that the puzzling [Can't subtract one Decimal
instance from another???] error message could have been caused.
Jul 31 '07 #8
In the utter absence of any clues from the OP, Marc was demonstrating
one possible way that the puzzling [Can't subtract one Decimal
instance from another???] error message could have been caused.
Ah yes. Until this is no longer true, "In the utter absence of any
clues from the OP", we can do no more. My appologies to Marc for
misinterpretation.

Aug 1 '07 #9

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

6 posts views Thread by DJ Craig | last post: by
7 posts views Thread by ‘5ÛHH575-UAZWKVVP-7H2H48V3 | last post: by
1 post views Thread by Todd O'Bryan | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.