Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PyUnicode_FromFormat: implement width and precision for %s, %S, %R, %V, %U, %A #51579

Closed
mdickinson opened this issue Nov 15, 2009 · 42 comments
Closed
Labels
topic-unicode type-feature A feature request or enhancement

Comments

@mdickinson
Copy link
Member

BPO 7330
Nosy @malemburg, @mdickinson, @vstinner, @ericvsmith, @ezio-melotti, @lekma, @akheron, @serhiy-storchaka
Files
  • issue_7330.diff
  • unicode_fromformat_precision.patch
  • unicode_fromformat_precision-2.patch
  • unicode_fromformat_precision-3.patch
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = <Date 2013-05-06.21:36:01.271>
    created_at = <Date 2009-11-15.19:42:32.127>
    labels = ['type-feature', 'expert-unicode']
    title = 'PyUnicode_FromFormat: implement width and precision for %s, %S, %R, %V, %U, %A'
    updated_at = <Date 2013-05-06.21:36:01.270>
    user = 'https://github.com/mdickinson'

    bugs.python.org fields:

    activity = <Date 2013-05-06.21:36:01.270>
    actor = 'vstinner'
    assignee = 'none'
    closed = True
    closed_date = <Date 2013-05-06.21:36:01.271>
    closer = 'vstinner'
    components = ['Unicode']
    creation = <Date 2009-11-15.19:42:32.127>
    creator = 'mark.dickinson'
    dependencies = []
    files = ['21324', '27465', '27479', '30144']
    hgrepos = []
    issue_num = 7330
    keywords = ['patch', 'needs review']
    message_count = 42.0
    messages = ['95306', '95310', '111802', '111808', '111820', '111894', '112041', '112298', '117995', '117996', '117997', '127690', '128296', '128359', '128381', '128725', '128773', '128776', '128785', '128786', '128790', '128933', '129942', '130258', '131649', '131668', '131710', '131964', '131965', '131968', '132057', '144626', '147861', '147966', '172258', '172262', '172343', '177206', '188476', '188477', '188596', '188597']
    nosy_count = 12.0
    nosy_names = ['lemburg', 'mark.dickinson', 'vstinner', 'eric.smith', 'ron_adam', 'ezio.melotti', 'lekma', 'ysj.ray', 'python-dev', 'petri.lehtinen', 'serhiy.storchaka', 'Sean.Ochoa']
    pr_nums = []
    priority = 'normal'
    resolution = 'fixed'
    stage = 'patch review'
    status = 'closed'
    superseder = None
    type = 'enhancement'
    url = 'https://bugs.python.org/issue7330'
    versions = ['Python 3.4']

    @mdickinson
    Copy link
    Member Author

    There seems to be something wrong with the width handling code in
    PyUnicode_FromFormat; or perhaps I'm misusing it.

    To reproduce: replace the line

    return PyUnicode_FromFormat("range(%R, %R)", r->start, r->stop);

    in range_repr in Objects/rangeobject.c with

    return PyUnicode_FromFormat("range(%20R, %20R)", r->start, r->stop);

    On my machine (OS X 10.6), this results in a segfault when invoking
    range_repr:

    Python 3.2a0 (py3k:76311M, Nov 15 2009, 19:16:40) 
    [GCC 4.2.1 (Apple Inc. build 5646)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>> range(0, 10)
    Segmentation fault

    Perhaps these modifiers aren't supposed to be used with a width?

    @mdickinson mdickinson added the type-crash A hard crash of the interpreter, possibly with a core dump label Nov 15, 2009
    @ericvsmith
    Copy link
    Member

    It looks like PyUnicode_FromFormatV is computing callcount incorrectly.
    It's looking for 'S', 'R', or 'A' immediately following '%', before the
    width. It seems to me it should be treating them the same as 's',
    although I'll admit to not having looked at it close enough to know
    exactly what's going on.

    The whole routine could use some attention, I think.

    @ronadam ronadam mannequin changed the title PyUnicode_FromFormat segfault when using widths. PyUnicode_FromFormat segfault Jul 27, 2010
    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Jul 28, 2010

    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.

    @malemburg
    Copy link
    Member

    Ray.Allen wrote:

    Ray.Allen <ysj.ray@gmail.com> added the comment:

    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.

    I agree with that, but don't feel strongly about not allowing this
    use case.

    If it's easy to support, why not have it ? Otherwise, I'd be +1 on
    adding a check and raise an error in case a width modifier is used
    with these markers.

    @ericvsmith
    Copy link
    Member

    I think under the "we're all consenting adults" doctrine that it should be allowed. If you really want that behavior, why force the char*/%s dance at each call site when it's easy enough to do it in one place? I don't think anyone supplying a width would really be surprised that it would truncate the result and possibly break round-tripping through repr.

    Besides, it's allowed in pure python code:
    >>> '%.5r' % object()
    '<obje'

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Jul 29, 2010

    You can write "%20s" as a argument for PyUnicode_FromFormat(), but it has no effect. The width and precision modifiers are not intended to apply to string formating(%s, %S, %R, %A), only apply to integer(%d, %u, %i, %x). Though you can write "%20s", but you cannot write "%20S", "%20R" and "%20A".

    There can be several fixes:

    1. make the presence of width and precision modifiers of %s, %S, %R, %A raise an Exception, like ValueError, instead of segment fault.
    2. make the presence of width and precision modifiers of %s, %S, %R, %A have no effect, just like current %s.
    3. make the presence of width and precision modifiers of %s, %S, %R, %A do have correct effect, like %r and %s in string formatting in python code.

    Thanks to Eric's ideas. Now I'm sure I prefer the last fix. I will work out a patch for this.

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Jul 30, 2010

    Is this really worthy to fix?

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Aug 1, 2010

    Here is the patch, it add support to use width and precision formatters in PyUnicode_FromFormat() for type %s, %S, %R, %V, %U, %A, besides fixed two bugs, which at least I believe:

    1. According to PyUnicode_FromFormat() doc: http://docs.python.org/dev/py3k/c-api/unicode.html?highlight=pyunicode_fromformat#PyUnicode_FromFormat, the "%A" should produce result of ascii(). But in the existing code, I only find code of  call to ascii(object) and calculate the spaces needed for it, but not appending the ascii() output to result. Also according to my simple test, the %A doesn't work, as the following simple test function:
    static PyObject *
    getstr(PyObject *self, PyObject *args)
    {
        const char *s = "hello world";
        PyObject *unicode = PyUnicode_FromString(s);
        return PyUnicode_FromFormat("%A", unicode);
    }
    Which should return the result of calling ascii() with the object named *unicode* as its argument. The result should be a unicode object with string "hello world". But it actually return a unicode object with string "%A". This can be fixed by adding the following line:
                       case 'A':
    in step 4.
    1. another bug, here is a piece of code in Object/unicodeobject.c, PyUnicode_FromFormatV():

    797 if (f == '%') {
    798 #ifdef HAVE_LONG_LONG
    799 int longlongflag = 0;
    800 #endif
    801 const char
    p = f;
    802 width = 0;
    803 while (ISDIGIT((unsigned)*f))
    804 width = (width*10) + *f++ - '0';

    Here the variable *width* cannot be correctly calculated, because the while loop will not execute, the *f currently is definitely '%'! So the width is always 0. But currently this doesn't cause error, since the following codes will ensure width >= MAX_LONG_CHARS:

    834 case 'd': case 'u': case 'i': case 'x':
    835 (void) va_arg(count, int);
    836 #ifdef HAVE_LONG_LONG
    837 if (longlongflag) {
    838 if (width < MAX_LONG_LONG_CHARS)
    839 width = MAX_LONG_LONG_CHARS;
    840 }
    841 else
    842 #endif
    843 /* MAX_LONG_CHARS is enough to hold a 64-bit integer,
    844 including sign. Decimal takes the most space. This
    845 isn't enough for octal. If a width is specified we
    846 need more (which we allocate later). */
    847 if (width < MAX_LONG_CHARS)
    848 width = MAX_LONG_CHARS;

    (currently width and precision only apply to integer types:%d, %u, %i, %x, not string and object types:%s, %S, %R, %A, %U, %V )

    To fix, the following line:
    801 const char* p = f;
    should be:
    801 const char* p = f++;
    just as the similar loop in step 4, and add another line:
    f--;
    after calculate width to adapting the character pointer.

    My patch fixed these two problems. Hoping somebody could take a look at it.

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Oct 5, 2010

    I update the patch. Hope somebody could do a review.

    1 similar comment
    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Oct 5, 2010

    I update the patch. Hope somebody could do a review.

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Oct 5, 2010

    Oooops! Sorry for re-submit the request...

    @vstinner
    Copy link
    Member

    vstinner commented Feb 1, 2011

    I opened other tickets related to PyUnicode_FromFormatV:

    • bpo-10833 :Replace %.100s by %s in PyErr_Format(): the arbitrary limit of 500 bytes is outdated
    • bpo-10831: PyUnicode_FromFormatV() doesn't support %li, %lli, %zi
    • bpo-10830: PyUnicode_FromFormatV("%c") doesn't support non-BMP characters on narrow build
    • bpo-10829: PyUnicode_FromFormatV() bugs with "%" and "%%" format strings

    (see also bpo-10832: Add support of bytes objects in PyBytes_FromFormatV())

    PyUnicode_FromFormatV() has now tests in test_unicode: issue_7330.diff should add new tests, at least to check that %20R doesn't crash.

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Feb 10, 2011

    Thanks haypo!

    Here is the updated patch, it add the tests about width modifiers and precision modifiers of %S, %R, %A. Besides I don't know how to add tests of %s, since when calling through ctypes, I could not get correct result value as python object from PyUnicode_FromFormat() with '%s' in format string as argument.

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Feb 11, 2011

    Here's the complete patch, added unittest for width modifier and precision modifier for '%s' formatter of PyUnicode_FromFormat() function.

    @vstinner
    Copy link
    Member

    It looks like your patch fixes bpo-10829: you should add tests for that, you can just reuse the tests of my patch (attached to bpo-10829).

    ---

    unicode_format() looks suboptimal.

    + memset(buffer, ' ', width);
    + width_unicode = PyUnicode_FromStringAndSize(buffer, width);

    You should avoid this byte string (buffer) and use memset() on the Unicode string directly. Something like:

    Py_UNICODE *u;
    Py_ssize_t i;
    width_unicode = PyUnicode_FromUnicode(NULL, width);
    u = PyUnicode_AS_UNICODE(width_unicode);
    for(i=0; i < width; i++) {
      *u = (Py_UNICODE)' ';
      u++;
    }

    You should also avoid the creation of a temporary unicode object (it can be slow if precision is large) using PySequence_GetSlice(). Py_UNICODE_COPY() does already truncate the string because you can pass an arbitrary length.

    ---

    I don't like "unicode_format" function name: it sounds like "str.format()" in Python. A suggestion: "unicode_format_align"

    ---

    With your patch, "%.200s" truncates the input string to 200 *characters*, but I think that it should truncate to 200 *bytes*, as printf does.

    ---

    •            n += PyUnicode_GET_SIZE(str);
      

    + n += width > PyUnicode_GET_SIZE(str) ? width : PyUnicode_GET_SIZE(str);

    I don't like this change because I hate having to compute manually strings length. It should that it would be easier if you format directly strings with width and precision at step 3, instead of doing it at step 4: so you can just read the length of the formatted string, and it avoids having to handle width/precision in two steps (which may be inconsistent :-/).

    ---

    Your patch implements %.100s (and %.100U): we might decide what to do with bpo-10833 before commiting your patch.

    ---

    In my opinion, the patch is a little bit too big. We may first commit the fix on the code parsing the width and precision: fix bpo-10829?

    ---

    Can you add tests for "%.s"? I would like to know if "%.s" is different than "%s" :-)

    ---

    •                             "must be a sequence, not %200s",
      

    + "must be a sequence, not %.200s",

    Hum, I think that they are many other places where such fix should be done. Nobody noticed this typo before because %.200s nor %200s were implemented (bpo-10833).

    ---

    Finally, do you really need to implement %200s, %2.5s and %.100s? I don't know, but I would be ok to commit the patch if you fix it for all of my remarks :-)

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Feb 17, 2011

    Thanks hyapo!

    It looks like your patch fixes bpo-10829: you should add tests for that, you can just reuse the tests of my patch (attached to bpo-10829).

    Sorry, but I think my patch doesn't fix bpo-10829. It seems link another issue. And by applying my patch and add tests from bpo-10829's patch, the tests cannot passed. Or did I missed something?

    You should also avoid the creation of a temporary unicode object (it can be slow if precision is large) using PySequence_GetSlice(). Py_UNICODE_COPY() does already truncate the string because you can pass an arbitrary length.

    In order to use Py_UNICODE_COPY, I have to create a unicode object with required length first. I feel this have the same cost as using PySequence_GetSlice(). If I understand correctly?

    With your patch, "%.200s" truncates the input string to 200 *characters*, but I think that it should truncate to 200 *bytes*, as printf does.

    Sorry, I don't understand. The result of PyUnicode_FromFormatV() is a unicode object. Then how to truncate to 200 *bytes*? I think the %s formatter just indicate that the argument is c-style chars, the result is always unicode string, and the width and precision formatters are to applied after converting c-style chars to string.

    I don't like this change because I hate having to compute manually strings length. It should that it would be easier if you format directly strings with width and precision at step 3, instead of doing it at step 4: so you can just read the length of the formatted string, and it avoids having to handle width/precision in two steps (which may be inconsistent :-/).

    Do you mean combine step 3 and step 4 together? Currently step 3 is just to compute the biggest width value and step 4 is to compute exact width and do the real format work. Only by doing real format we can get the exact width of a string. So I have to compute each width twice in both step 3 and step 4. Is combining the two steps in to one a good idea?

    In my opinion, the patch is a little bit too big. We may first commit the fix on the code parsing the width and precision: fix bpo-10829?

    Again, I guess bpo-10829 need another its own patch to fix.

    Can you add tests for "%.s"? I would like to know if "%.s" is different than "%s" :-)

    Err, '%.s' causes unexpected result both with and without my patch. Maybe it's still another bug?

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Feb 18, 2011

    Do you mean combine step 3 and step 4 together? Currently step 3 is just to compute the biggest width value and step 4 is to compute exact width and do the real format work. Only by doing real format we can get the exact width of a string. So I have to compute each width twice in both step 3 and step 4. Is combining the two steps in to one a good idea?

    Sorry, Here I mean:

    Do you mean combine step 3 and step 4 together? Currently step 3 is just to compute the biggest width value and step 4 is to compute exact width and do the convert work(by calling PyObject_Str()/PyObject_Repr()/PyObject_ASCII()/PyUnicode_DecodeUTF8() for %S/%R/%A/%s). Only by doing convert we can get the exact width of a string. So I have to compute each width twice in both step 3 and step 4. Is combining the two steps in to one a good idea?

    @vstinner
    Copy link
    Member

    > It looks like your patch fixes bpo-10829: you should add tests for that, you can just reuse the tests of my patch (attached to bpo-10829).

    Sorry, but I think my patch doesn't fix bpo-10829.

    Ah ok, so don't add failing tests :-)

    > You should also avoid the creation of a temporary unicode object (it can be slow if precision is large) using PySequence_GetSlice(). Py_UNICODE_COPY() does already truncate the string because you can pass an arbitrary length.

    In order to use Py_UNICODE_COPY, I have to create a unicode object with required length first.

    No you don't. You can copy a substring of the input string with
    Py_UNICODE_COPY: just pass a smaller length.

    > With your patch, "%.200s" truncates the input string to 200 *characters*, but I think that it should truncate to 200 *bytes*, as printf does.

    Sorry, I don't understand. The result of PyUnicode_FromFormatV() is a unicode object. Then how to truncate to 200 *bytes*?

    You can truncate the input char* on the call to PyUnicode_DecodeUTF8:
    pass a size smaller than strlen(s).

    case 's':
    {
        /* UTF-8 */
        const char *s = va_arg(count, const char*);
        PyObject *str = PyUnicode_DecodeUTF8(s, strlen(s), "replace");
        if (!str)
            goto fail;
        n += PyUnicode_GET_SIZE(str);
        /* Remember the str and switch to the next slot */
        *callresult++ = str;
        break;
    }

    I don't know if we should truncate to a number of bytes, or a number of
    characters.

    > I don't like this change because I hate having to compute manually strings length. It should that it would be easier if you format directly strings with width and precision at step 3, instead of doing it at step 4: so you can just read the length of the formatted string, and it avoids having to handle width/precision in two steps (which may be inconsistent :-/).

    Do you mean combine step 3 and step 4 together? Currently step 3 is just to compute the biggest width value and step 4 is to compute exact width and do the real format work. Only by doing real format we can get the exact width of a string. So I have to compute each width twice in both step 3 and step 4. Is combining the two steps in to one a good idea?

    "Do you mean combine step 3 and step 4 together?"

    Yes, but I am no more sure that it is the right thing to do.

    > Can you add tests for "%.s"? I would like to know if "%.s" is different than "%s" :-)

    Err, '%.s' causes unexpected result both with and without my patch. Maybe it's still another bug?

    If the fix (always have the same behaviour) is short, it would be nice
    to include it in your patch.

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Feb 18, 2011

    No you don't. You can copy a substring of the input string with
    Py_UNICODE_COPY: just pass a smaller length.

    Oh, yes, I got your meaning now. I'll follow this.

    You can truncate the input char* on the call to PyUnicode_DecodeUTF8:

    Oh, what if the trunked char* cannot be decoded correctly? e.g. a tow-bytes character is divided in the middle?

    Yes, but I am no more sure that it is the right thing to do.

    If I understand correctly(my English ability is limited), your suggestion is to combine, right? I'm afraid that combine may bring us too complicated code to write. The currently 4 steps just divide the process into smaller and simpler pieces. I'm not sure.

    @vstinner
    Copy link
    Member

    Oh, what if the trunked char* cannot be decoded correctly?
    e.g. a tow-bytes character is divided in the middle?

    Yes, but PyUnicode_FromFormatV() uses UTF-8 decoder with replace error handler, and so the incomplete byte sequence will be replaced by � (it doesn't fail with an error). Example:

    >>> "abc€".encode("utf-8")[:-1].decode("utf-8", "replace")
    'abc�'

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Feb 18, 2011

    Can you add tests for "%.s"? I would like to know if "%.s" is different than "%s" :-)

    Oh sorry~~ I made an mistake. There is no bug here. I have attached tests that show that '%.s' is the same as '%s'.

    Here is the updated patch:
    1, changed the function name unicode_format() to
    1, remove
    """

    •                             "must be a sequence, not %200s",
      

    + "must be a sequence, not %.200s",
    """
    in Python/ceval.c

    2, Removing using PySequence_GetSlice() in unicode_format_align() and do a refactor to optimize the process.

    3, Add tests for '%.s' and '%s', as haypo wanted.

    This is obviously not the final patch just convenient for other to do a review. Something more need to be discussed.

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Feb 21, 2011

    > > With your patch, "%.200s" truncates the input string to 200 *characters*, but I think that it should truncate to 200 *bytes*, as printf does.
    >
    > Sorry, I don't understand. The result of PyUnicode_FromFormatV() is a unicode object. Then how to truncate to 200 *bytes*?

    You can truncate the input char* on the call to PyUnicode_DecodeUTF8:
    pass a size smaller than strlen(s).

    Now I wonder how should we treat precision formatters of '%s'. First of all, the PyUnicode_FromFormat() should behave like C printf(). In C printf(), the precision formatter of %s is to specify a maximum width of the displayed result. If final result is longer than that value, it must be truncated. That means the precision is applied on the final result. While python's PyUnicode_FromFormat() is to produce unicode strings, so the width and precision formatter should be applied on the final unicode string result. And the format stage is split into two ones, one is converting each paramater to an unicode string, another one is to put the width and precision formatters on them. So I wonder if we should apply the precision formatter on the converting stage, that is, to PyUnicode_DecodeUTF8(). So in my opinion precision should not be applied to input chars, but output unicodes.

    I hope I didn't misunderstand something.

    So haypo, what's your opinion.

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Mar 3, 2011

    Here is the updated patch:

    1, Work with function parse_format_flags() which is introduced in bpo-10829, and the patch is simpler and more clear than before.
    2, Change parse_format_flags() to set precision value to -1 in the case of '%s' in order to differ with '%.0s'
    3, Move call of unicode_format_align() in step 3 in order to avoid many codes like "n += width > PyUnicode_GET_SIZE(str) ? width : PyUnicode_GET_SIZE(str);", (following haypo's comments)

    @vstinner vstinner changed the title PyUnicode_FromFormat segfault PyUnicode_FromFormat: implement width and precision for %s, %S, %R, %V, %U, %A Mar 3, 2011
    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Mar 7, 2011

    I noticed that after apply my last patch and running full unittest cases, some weird errors which I don't know the reasons occurred, for example:

    AttributeError: 'dict' object has no attribute 'get'
    and
    AttributeError: 'Queue' object has no attribute 'get'

    I didn't look deep into it. But I found after I optimist my patch, these errors disappeared: I removed the "unicode_format_align()" function in previous patch, directly add needed spaces and copy part of unicode got from parameters according to width and precision formatters in step 4(using Py_UNICODE_FILL() and Py_UNICODE_COPY()) . This avoid create temporary unicode objects using unicode_format_align() in step 3. And also the patch becomes simpler.

    So this patch is intended to replace of the previous. And if I have more time, I will try to find the reasons of the weird errors.

    @vstinner
    Copy link
    Member

    Ray Allen: Your patch doesn't touch the documentation. At least, you should mention (using .. versionchanged:: 3.3) that PyUnicode_FromFormat() does now support width and precision. It is important to specify the unit of the sizes: number of bytes or number of characters? Because many developer may refer to printf() which counts in bytes (especially for %s). PyUnicode_FromFormat() is more close to wprintf(), but I don't know if wprintf() uses bytes or characters for width and precision with the %s and %ls formats.

    I plan to fix bpo-10833 by replacing %.100s by %s is most (or all) error messages, and then commit your patch.

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Mar 21, 2011

    Ooops! I found my last submitted patch is a wrong one.

    Here is the updated patch add doc entries about the changes. The test cases which assert error messages generated by PyUnicode_FromFormat() with "%.200s" formatters equality would failed due to this patch. Hope you don't miss any of them.

    @python-dev
    Copy link
    Mannequin

    python-dev mannequin commented Mar 22, 2011

    New changeset d3ae3fe3eb97 by Victor Stinner in branch 'default':
    Issue bpo-7330, bpo-10833: Replace %100s by %.100s and %200s by %.200s
    http://hg.python.org/cpython/rev/d3ae3fe3eb97

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Mar 24, 2011

    By the way, as my simple tests, wprintf() with "%ls" does apply the width and precision formatters on units of characters.

    @vstinner
    Copy link
    Member

    There are 4 patches "bpo-7030" attached to this issue. Some of them have a version number in their name, some doesn't. You did the same on other issues. It is more easy to follow a patch if it has a version number, for example: issue_7330.diff, issue_7330-2.diff, issue_7330-3.diff, issue_7330-4.diff, ... And I suppose that you can remove all old patches, except if they are alternative implementations or contain something special.

    @ysjray
    Copy link
    Mannequin

    ysjray mannequin commented Mar 24, 2011

    Sorry for having done that! I will remove old patches and leave a cleaner view.

    @vstinner
    Copy link
    Member

    I closed bpo-10833 as invalid, because it is a regression of Python 3. PyErr_String() uses PyString_FromFormatV() in Python 2, which supports precision for %s, whereas it uses PyUnicode_FromFormatV() in Python 3, which never supported precision for %s.

    @vstinner
    Copy link
    Member

    Hum, the issue is still open, I will try to review it.

    @vstinner
    Copy link
    Member

    Issue bpo-13428 has been marked as a duplicate of this issue.

    @akheron
    Copy link
    Member

    akheron commented Nov 19, 2011

    Hi!

    I'd like to have this committed to be able to fix bpo-13349. So here's a review.

    • In Doc/c-api/unicode.rst, the two "versionchanged:: 3.3" directives can be merged

    • In tests, I'd use 'abcde' rather than 'xxxxx' to make sure that correct characters are copied to the output (hope you understand what I mean)

    • No test checks that width and precision work on characters rather than bytes

    • The changes to unicodeobject.c don't apply on top of current default branch.

    @vstinner
    Copy link
    Member

    vstinner commented Oct 6, 2012

    I rewrote PyUnicode_FromFormatV() to use a single step instead of four: see issue bpo-16147. So it's now simpler to fix this issue. Here is a new patch to implement width and precision modifiers for %s, %A, %R, %S and %U formats.

    @vstinner
    Copy link
    Member

    vstinner commented Oct 6, 2012

    I read again this old issue. I still think that it would be better to truncate to a number of *bytes* for "%s" format (and %V format when the first argument is NULL) to mimic printf(). The "replace" error handler of the UTF-8 decoder handles truncated string correctly. So I should update my patch.

    @vstinner
    Copy link
    Member

    vstinner commented Oct 7, 2012

    Updated patch: precision for "%s" and "%V" (if the first PyObject* argument is NULL) formats is now a number of bytes, rather than a number of characters. width is still always a number of character.

    The reason is that "%.100s" can be used for avoid a crash if the argument is not terminated by a null character (see issue bpo-10833).

    @serhiy-storchaka
    Copy link
    Member

    I found one bug and add some nitpicks and optimization suggestion on Rietveld.

    @serhiy-storchaka serhiy-storchaka added type-feature A feature request or enhancement and removed type-crash A hard crash of the interpreter, possibly with a core dump labels Jan 27, 2013
    @vstinner
    Copy link
    Member

    vstinner commented May 5, 2013

    New version of my patch taking Serhiy's remarks into account:

    • add a check_format() function to cleanup unit tests
    • only call _PyUnicodeWriter_Prepare() once per formatted argument: compute the length and maximum character. Be more optimistic about sprintf() for integer and pointer: expect that the maximum character is 127 or less
    • uniformize code parsing width and precision
    • factorize code for '%s' and '%V'

    Note: remove also _PyUnicode_WriteSubstring() from the patch, it was already added.

    @vstinner
    Copy link
    Member

    vstinner commented May 5, 2013

    I didn't add the following optimization (proposed by Serhiy in his review) because I'm not convinced that it's faster, and it's unrelated to this issue:

    if (width > (PY_SSIZE_T_MAX - 9) / 10
    && width > (PY_SSIZE_T_MAX - ((int)*f - '0')) / 10)
    { ... }

    instead of

    if (width > (PY_SSIZE_T_MAX - ((int)*f - '0')) / 10)
    { ... }

    @python-dev
    Copy link
    Mannequin

    python-dev mannequin commented May 6, 2013

    New changeset 9e0f1c3bf9b6 by Victor Stinner in branch 'default':
    Issue bpo-7330: Implement width and precision (ex: "%5.3s") for the format string
    http://hg.python.org/cpython/rev/9e0f1c3bf9b6

    @vstinner
    Copy link
    Member

    vstinner commented May 6, 2013

    Finally, I closed this issue. Sorry for the long delay, but many other PyUnicode_FromFormat() issues had to be discussed/fixed before this one can be fixed. It was also much easier to fix this issue since my refactoring of PyUnicode_FromFormat() to only parse the format string once (thanks to the _PyUnicodeWriter API) instead of having 4 steps.

    Thanks to Ysj Ray, thanks to reviewers.

    This is one of the oldest issue that I had to fix :-)

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    topic-unicode type-feature A feature request or enhancement
    Projects
    None yet
    Development

    No branches or pull requests

    7 participants