Changeset 7481:e3276b673cd6


Ignore:
Timestamp:
12/01/07 21:34:09 (5 years ago)
Author:
William Stein <wstein@…>
Branch:
default
Message:

trac #1346 -- 64-bit doctest issues and hashing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sage/modules/quotient_module.py

    r7476 r7481  
    129129            0 
    130130            sage: hash(Q) 
    131             -1880683406 
     131            -1880683406            # 32-bit 
     132            2870563926094318706    # 64-bit 
    132133 
    133134        The hash is just got by hashing both V and W. 
    134135            sage: hash((V, W)) 
    135             -1880683406             
     136            -1880683406            # 32-bit 
     137            2870563926094318706    # 64-bit 
    136138        """ 
    137139        return self.__hash 
     
    158160            0 
    159161            sage: cmp(Q1, 5) 
    160             1         
     162            1                  # 32-bit 
     163            -1                 # 64-bit 
    161164        """ 
    162165        if not isinstance(other, FreeModule_ambient_field_quotient): 
Note: See TracChangeset for help on using the changeset viewer.