You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(26) |
Dec
(13) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(5) |
Feb
(16) |
Mar
(5) |
Apr
(5) |
May
(13) |
Jun
(12) |
Jul
(1) |
Aug
(2) |
Sep
(13) |
Oct
(6) |
Nov
(1) |
Dec
(29) |
| 2008 |
Jan
(2) |
Feb
(2) |
Mar
(2) |
Apr
(57) |
May
(35) |
Jun
(45) |
Jul
(132) |
Aug
(87) |
Sep
(141) |
Oct
(86) |
Nov
(17) |
Dec
(2) |
| 2009 |
Jan
(3) |
Feb
(2) |
Mar
(3) |
Apr
(3) |
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2010 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
1
|
2
|
3
|
4
(1) |
5
|
6
|
7
|
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
|
29
|
30
|
|
|
|
|
|
|
From: <ba...@us...> - 2009-11-04 17:26:04
|
Revision: 1175
http://omc.svn.sourceforge.net/omc/?rev=1175&view=rev
Author: bartw
Date: 2009-11-04 17:25:48 +0000 (Wed, 04 Nov 2009)
Log Message:
-----------
fixed References up-calls
Modified Paths:
--------------
cmpi-bindings/trunk/swig/python/cmpi_pywbem_bindings.py
Modified: cmpi-bindings/trunk/swig/python/cmpi_pywbem_bindings.py
===================================================================
--- cmpi-bindings/trunk/swig/python/cmpi_pywbem_bindings.py 2009-08-10 07:32:20 UTC (rev 1174)
+++ cmpi-bindings/trunk/swig/python/cmpi_pywbem_bindings.py 2009-11-04 17:25:48 UTC (rev 1175)
@@ -289,8 +289,8 @@
while e and e.hasNext():
data = e.next()
assert(data.type == cmpi.CMPI_instance)
- piname=self.proxy.cmpi2pywbem_inst(data.value.ref)
- yield piname
+ pinst=self.proxy.cmpi2pywbem_inst(data.value.inst)
+ yield pinst
def ReferenceNames(self, path, resultClass=None, role=None):
cop = self.proxy.pywbem2cmpi_instname(path)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|