DEVELOPING: remove section about string module
authorZac Medico <zmedico@gentoo.org>
Wed, 11 Jan 2012 12:18:20 +0000 (04:18 -0800)
committerZac Medico <zmedico@gentoo.org>
Wed, 11 Jan 2012 12:18:20 +0000 (04:18 -0800)
The module no longer exists since Python 2.7, so by now it should be
obvious that it's obsolete.

DEVELOPING

index 8286a8bcf2967ff0e55ff950f95e98429b9d2625..2c98ddba57785e3540d421241b03bbbded9986b9 100644 (file)
@@ -33,27 +33,6 @@ The mixing of tabs and spaces means other developers can'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 tabwidth).
 
-String
--------
-Try not to use the functions in the string module, they are deprecated.
-
-string.join(<iterable>," ")
-
-should be replaced with:
-
-" ".join(<iterable>)
-
-and:
-
-string.split(string, delimeter)
-
-should be replaced with:
-
-"somestring".split(delimeter)
-
-Nearly all other methods in string work on string objects and have similar calling
-conventions.
-
 Comparisons
 -----------