[Erp5-report] r42610 nicolas.dumazet - /erp5/trunk/products/ERP5Type/Base.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Mon Jan 24 06:53:43 CET 2011
Author: nicolas.dumazet
Date: Mon Jan 24 06:53:43 2011
New Revision: 42610
URL: http://svn.erp5.org?rev=42610&view=rev
Log:
missing method parameters
Modified:
erp5/trunk/products/ERP5Type/Base.py
Modified: erp5/trunk/products/ERP5Type/Base.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/Base.py?rev=42610&r1=42609&r2=42610&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Type/Base.py [utf8] (original)
+++ erp5/trunk/products/ERP5Type/Base.py [utf8] Mon Jan 24 06:53:43 2011
@@ -497,7 +497,8 @@ class PropertyHolder:
"""
Return the list of class method IDs
"""
- return [x[0] for x in self.getClassMethodItemList()]
+ return [x[0] for x in self.getClassMethodItemList(klass,
+ inherited=inherited, local=local)]
def getClassPropertyItemList(self, klass, inherited=1, local=1):
"""
@@ -510,7 +511,8 @@ class PropertyHolder:
"""
Return the list of class method IDs
"""
- return [x[0] for x in self.getClassPropertyItemList()]
+ return [x[0] for x in self.getClassPropertyItemList(klass,
+ inherited=inherited, local=local)]
def getClassPropertyList(klass):
ps_list = getattr(klass, 'property_sheets', ())
More information about the Erp5-report
mailing list