[Python-Dev] Adding Unicode methods to string objects

Fredrik Lundh fredrik@pythonware.com
Tue, 7 Mar 2000 12:54:56 +0100


> Unicode objects      string objects
> expandtabs         =20

yes.

I'm pretty sure there's "expandtabs" code in the
strop module.  maybe barry missed it?

> center
> ljust
> rjust             =20

probably.

the implementation is trivial, and ljust/rjust are
somewhat useful, so you might as well add them
all (just cut and paste from the unicode class).

what about rguido and lguido, btw?

> zfill              =20

no.

</F>