Message111802
| Author | ysj.ray |
|---|---|
| Recipients | eric.smith, ezio.melotti, mark.dickinson, ron_adam, ysj.ray |
| Date | 2010-07-28.13:11:38 |
| SpamBayes Score | 0.030296797 |
| Marked as misclassified | No |
| Message-id | <1280322700.64.0.489091395657.issue7330@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
I feel it's not proper to allow the width restrict on types %S, %R, %A. These types correspond to PyObject_Str(), PyObject_Repr, PyObject_ASCII() respectively, the results of them are usually a complete string representation of a object. If you put a width restriction on the string, it's likely that the result string is intercepted and is of no complete meaning. If you really want to put a width restriction on the result, you can use %s instead, with one or two more lines to get the corresponding char* from the object. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2010-07-28 13:11:40 | ysj.ray | set | recipients: + ysj.ray, mark.dickinson, eric.smith, ron_adam, ezio.melotti |
| 2010-07-28 13:11:40 | ysj.ray | set | messageid: <1280322700.64.0.489091395657.issue7330@psf.upfronthosting.co.za> |
| 2010-07-28 13:11:39 | ysj.ray | link | issue7330 messages |
| 2010-07-28 13:11:38 | ysj.ray | create | |