Message122497
| Author |
eric.smith |
| Recipients |
Rhamphoryncus, amaury.forgeotdarc, belopolsky, eric.smith, ezio.melotti, lemburg, loewis, pitrou, vstinner |
| Date |
2010年11月27日.01:55:57 |
| SpamBayes Score |
0.0031334916 |
| Marked as misclassified |
No |
| Message-id |
<1290822960.84.0.557643719497.issue10542@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
The code will basically be:
Py_UCS4 fill;
parse_format_string(fmt, ..., &fill, ...);
/* lots more code */
if (fill_needed) {
/* compute how many characters to reserve */
space_needed = Py_UNICODE_NUM_NEEDED(fill) *
number_of_characters_to_fill;
}
It would be most convenient (and require the fewest changes) if the computation could just use fill, instead of remembering the pointers to the beginning and end of fill.
Py_UNICODE_CODEPOINT_COUNT could be implemented with a primitive that does what I want. |
|