Files
cpython/Lib
Thomas Wouters add191118f Fix bug in passing tuples to string.Template. All other values (with working
str() or repr()) would work, just not multi-value tuples. Probably not a
backport candidate, since it changes the behaviour of passing a
single-element tuple:

>>> string.Template("$foo").substitute(dict(foo=(1,)))

'(1,)'

versus

'1'
2006-07-05 11:03:49 +00:00
..
2006-06-27 11:52:49 +00:00
2006-05-01 03:03:02 +00:00
2006-06-25 20:44:16 +00:00
2006-05-18 06:18:06 +00:00
2006-05-28 19:13:17 +00:00
2006-03-07 16:16:07 +00:00
2006-05-26 12:52:53 +00:00
2006-05-18 06:51:46 +00:00
2006-02-26 04:21:50 +00:00
2006-02-08 12:53:56 +00:00
2006-05-11 19:57:09 +00:00
2006-06-14 04:13:00 +00:00
2006-06-12 03:05:03 +00:00
2006-05-31 14:08:48 +00:00
2006-06-13 17:14:36 +00:00
2006-02-19 21:26:07 +00:00
2006-02-28 22:50:17 +00:00
2006-05-18 02:06:40 +00:00
2006-02-27 22:32:47 +00:00
2006-06-11 19:42:51 +00:00
2006-06-11 07:26:27 +00:00
2006-04-17 13:37:15 +00:00
2006-06-11 07:27:56 +00:00
2006-03-16 06:30:02 +00:00
2006-05-01 03:03:02 +00:00
2006-06-14 22:38:13 +00:00
2006-03-16 06:33:21 +00:00
2006-02-27 22:32:47 +00:00
2006-06-11 19:42:51 +00:00
2006-02-25 22:38:04 +00:00
2006-06-15 18:06:29 +00:00