Changeset 20405
- Timestamp:
- 06/30/07 10:04:24 (1 year ago)
- Files:
-
- PyJuggler/trunk/ChangeLog (modified) (1 diff)
- PyJuggler/trunk/configure.ac (modified) (1 diff)
- PyJuggler/trunk/dist/__init__.py (modified) (1 diff)
- PyJuggler/trunk/src/vpr/_InetAddr.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
PyJuggler/trunk/ChangeLog
r20404 r20405 1 1 DATE AUTHOR CHANGE 2 2 ----------- ----------- ------------------------------------------------------- 3 Jun-30-2007 patrick Updated for VPR 1.1.43. 4 NEW VERSION: 1.3.3 3 5 Jun-30-2007 patrick Updated for VR Juggler 2.3.4 and exposed 4 6 vrj::Kernel::init(). PyJuggler/trunk/configure.ac
r20404 r20405 410 410 fi 411 411 412 VPR_PATH([1.1. 20], , [AC_MSG_ERROR([*** VPR is required for PyJuggler ***])])412 VPR_PATH([1.1.43], , [AC_MSG_ERROR([*** VPR is required for PyJuggler ***])]) 413 413 JCCL_PATH_CXX([1.1.11], , 414 414 [AC_MSG_ERROR([*** JCCL is required for PyJuggler ***])]) PyJuggler/trunk/dist/__init__.py
r20404 r20405 6 6 __all__ = ["vrj", "cluster", "gadget", "snx", "jccl", "vpr"] 7 7 __build__ = 1 8 __version__ = '1.3. 2.%d' % __build__8 __version__ = '1.3.3.%d' % __build__ 9 9 __date__ = string.join(string.split('$Date$')[1:3], ' ') 10 10 __author__ = 'Patrick Hartling <patrick@infiscape.com>' PyJuggler/trunk/src/vpr/_InetAddr.cpp
r19730 r20405 70 70 ) 71 71 .def("getAllLocalAddrs", &vpr::InetAddr::getAllLocalAddrs, 72 (args("withLoopback") = false ),72 (args("withLoopback") = false, args("withDown") = false), 73 73 "getAllLocalAddrs(withLoopback = False) -> list of InetAddr objects\n" 74 74 "Retrieves all the IPv4 addresses associated with the local\n" … … 79 79 " loopback address (127.0.0.1) in the returned\n" 80 80 " list. This parameter is optional and defaults to\n" 81 " False." 81 " False.\n" 82 "withDown -- A Boolean flag indicating whether the address for\n" 83 " interfaces in the down state should be included.\n" 84 " This parameter is optional and defaults to False." 82 85 ) 83 86 .def("setAddress",
