Changeset 4457:7f751ac7004a for sage/rings/real_rqdf.pyx
- Timestamp:
- 05/04/07 12:41:56 (6 years ago)
- Branch:
- default
- Children:
- 4458:a3317cf80025, 4459:40168aa49550
- File:
-
- 1 edited
-
sage/rings/real_rqdf.pyx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sage/rings/real_rqdf.pyx
r4286 r4457 772 772 return res 773 773 774 def __lshift__( x, y):774 def __lshift__(self, n): 775 775 """ 776 776 LShifting a quad double is not supported 777 777 """ 778 raise TypeError, "unsupported operand type(s) for <<: '%s' and '%s'"%(type of(self), typeof(n))779 780 def __rshift__( x, y):778 raise TypeError, "unsupported operand type(s) for <<: '%s' and '%s'"%(type(self), type(n)) 779 780 def __rshift__(self, n): 781 781 """ 782 782 RShifting a quad double is not supported 783 783 """ 784 raise TypeError, "unsupported operand type(s) for >>: '%s' and '%s'"%(type of(self), typeof(n))784 raise TypeError, "unsupported operand type(s) for >>: '%s' and '%s'"%(type(self), type(n)) 785 785 786 786 def multiplicative_order(self):
Note: See TracChangeset
for help on using the changeset viewer.
