1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00
freebsd-ports/devel/py-istring/pkg-descr
Andrej Zverev 4257b6cc77 - Fix WWW in pkg_descr
PR:		ports/88617
Submitted by:	Jean Milanez Melo
Approved by:	sem (mentor, implicitly)
2005-11-08 07:40:48 +00:00

10 lines
222 B
Plaintext

istring is an interpolated string class, which means you can substitute
variables into a string, like this:
>>> j = 3
>>> s = istring("j is $j")
>>> s
'j is 3'
WWW: http://www.neosynapse.net/istring.html