Message 198865 - Python tracker

This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Content
The preferred behavior is that a negative number always means 0.

That is what lists do:

    >>> [1] * (-5)
    []