Return-Path: X-Original-To: apmail-chemistry-dev-archive@www.apache.org Delivered-To: apmail-chemistry-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 71E536763 for ; Wed, 18 May 2011 20:17:31 +0000 (UTC) Received: (qmail 58533 invoked by uid 500); 18 May 2011 20:17:30 -0000 Delivered-To: apmail-chemistry-dev-archive@chemistry.apache.org Received: (qmail 57842 invoked by uid 500); 18 May 2011 20:17:29 -0000 Mailing-List: contact dev-help@chemistry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@chemistry.apache.org Delivered-To: mailing list dev@chemistry.apache.org Received: (qmail 57500 invoked by uid 99); 18 May 2011 20:17:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 May 2011 20:17:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 May 2011 20:17:28 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id B8DBFCF84E for ; Wed, 18 May 2011 20:16:48 +0000 (UTC) Date: Wed, 18 May 2011 20:16:48 +0000 (UTC) From: "Simon Poirier (JIRA)" To: dev@chemistry.apache.org Message-ID: <2130602223.23675.1305749808754.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Created] (CMIS-376) ResultSet as old-style class MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 ResultSet as old-style class ---------------------------- Key: CMIS-376 URL: https://issues.apache.org/jira/browse/CMIS-376 Project: Chemistry Issue Type: Bug Components: python-cmislib Reporter: Simon Poirier Priority: Minor cmislib.model.ResultSet is defined as [...] class ResultSet(): [...] This notation is both incompatible with python2.4 and makes the ResultSet an old-style class (dropped in python3.0+) It should be changed to inherit object, as such: class ResultSet(object): I don't see a reason for cmislib.model.ResultSet to be defined as an old-style class and it should be changed for compatibility. -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira