Changeset 19005

Show
Ignore:
Timestamp:
07/10/06 11:54:33 (2 years ago)
Author:
allenb
Message:

- Update the wrapper for vpr.GUID.hash to the new hasher class in vpr.GUID. This change was needed because the new hash class has 2 op()
methods and we had to resolve to the correct one.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • PyJuggler/trunk/ChangeLog

    r18325 r19005  
    11DATE        AUTHOR      CHANGE 
    22----------- ----------- ------------------------------------------------------- 
     3Jul-10-2006 allenb      Updated vpr.GUID.hash wrapper to latest changes in vpr. 
     4                        NEW VERSION: 1.1.8 
    35Dec-28-2005 allenb      Fixed vpr.GUID.__hash__ to return a signed 32 bit int. 
    46Dec-12-2005 aronb       Adding bindings for vpr::InetAddr 
  • PyJuggler/trunk/dist/__init__.py

    r18525 r19005  
    66__all__     = ["vrj", "cluster", "gadget", "snx", "jccl", "vpr"] 
    77__build__   = 1 
    8 __version__ = '1.1.7.%d' % __build__ 
     8__version__ = '1.1.8.%d' % __build__ 
    99__date__    = string.join(string.split('$Date$')[1:3], ' ') 
    1010__author__  = 'Patrick Hartling <patrick@infiscape.com>' 
  • PyJuggler/trunk/src/vpr/_GUID.cpp

    r18525 r19005  
    138138      ) 
    139139      .def(init<const vpr::GUID::hash&>()) 
    140       .def("__call__", &vpr::GUID::hash::operator()) 
     140      .def("__call__", (::size_t (vpr::GUID::hash::*)(const vpr::GUID&) const)&vpr::GUID::hash::operator()) 
    141141   ; 
    142142