From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RkxAH-0007PS-NW for garchives@archives.gentoo.org; Wed, 11 Jan 2012 12:20:26 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F68E21C065; Wed, 11 Jan 2012 12:20:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3A90921C065 for ; Wed, 11 Jan 2012 12:20:16 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD1151B4035 for ; Wed, 11 Jan 2012 12:20:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id BB8DD80044 for ; Wed, 11 Jan 2012 12:20:14 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <93bff8841e53b7a47dedc0509d4986e79b4e71a3.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: DEVELOPING X-VCS-Directories: / X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 93bff8841e53b7a47dedc0509d4986e79b4e71a3 Date: Wed, 11 Jan 2012 12:20:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 02f56a6d-6f70-471c-a728-ca54f2a445ac X-Archives-Hash: caecd340c0346b9e061eeb8dba119bcc commit: 93bff8841e53b7a47dedc0509d4986e79b4e71a3 Author: Zac Medico gentoo org> AuthorDate: Wed Jan 11 12:18:20 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Jan 11 12:18:20 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D93bff884 DEVELOPING: remove section about string module The module no longer exists since Python 2.7, so by now it should be obvious that it's obsolete. --- DEVELOPING | 21 --------------------- 1 files changed, 0 insertions(+), 21 deletions(-) diff --git a/DEVELOPING b/DEVELOPING index 8286a8b..2c98ddb 100644 --- a/DEVELOPING +++ b/DEVELOPING @@ -33,27 +33,6 @@ The mixing of tabs and spaces means other developers c= an't read what you did. This is why the python peps state spaces over tabs; because with spaces = the line wrapping is always clear (but you cannot convert spaces as easily as tab= width). =20 -String -------- -Try not to use the functions in the string module, they are deprecated. - -string.join(," ") - -should be replaced with: - -" ".join() - -and: - -string.split(string, delimeter) - -should be replaced with: - -"somestring".split(delimeter) - -Nearly all other methods in string work on string objects and have simil= ar calling -conventions. - Comparisons ----------- =20