Changeset 20221
- Timestamp:
- 05/15/07 08:07:39 (1 year ago)
- Files:
-
- PyJuggler/branches/1.2/ChangeLog (modified) (1 diff)
- PyJuggler/branches/1.2/configure.ac (modified) (1 diff)
- PyJuggler/branches/1.2/dist/__init__.py (modified) (1 diff)
- PyJuggler/branches/1.2/src/vpr/_InetAddr.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
PyJuggler/branches/1.2/ChangeLog
r19942 r20221 1 1 DATE AUTHOR CHANGE 2 2 ----------- ----------- ------------------------------------------------------- 3 May-15-2007 patrick Updated for VPR 1.1.43. 4 NEW VERSION: 1.1.15 3 5 Apr-11-2007 patrick Updated for Gadgeteer 1.1.24. 4 6 NEW VERSION: 1.1.14 PyJuggler/branches/1.2/configure.ac
r20194 r20221 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/branches/1.2/dist/__init__.py
r19942 r20221 6 6 __all__ = ["vrj", "cluster", "gadget", "snx", "jccl", "vpr"] 7 7 __build__ = 1 8 __version__ = '1.1.1 4.%d' % __build__8 __version__ = '1.1.15.%d' % __build__ 9 9 __date__ = string.join(string.split('$Date$')[1:3], ' ') 10 10 __author__ = 'Patrick Hartling <patrick@infiscape.com>' PyJuggler/branches/1.2/src/vpr/_InetAddr.cpp
r20205 r20221 74 74 ) 75 75 .def("getAllLocalAddrs", &vpr::InetAddr::getAllLocalAddrs, 76 (args("withLoopback") = false ),76 (args("withLoopback") = false, args("withDown") = false), 77 77 "getAllLocalAddrs(withLoopback = False) -> list of InetAddr objects\n" 78 78 "Retrieves all the IPv4 addresses associated with the local\n" … … 83 83 " loopback address (127.0.0.1) in the returned\n" 84 84 " list. This parameter is optional and defaults to\n" 85 " False." 85 " False.\n" 86 "withDown -- A Boolean flag indicating whether the address for\n" 87 " interfaces in the down state should be included.\n" 88 " This parameter is optional and defaults to False." 86 89 ) 87 90 .def("setAddress",
