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.

Author epaine
Recipients epaine, rhoffmann, serhiy.storchaka
Date 2021-01-22.16:23:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1611332588.52.0.427700071198.issue42992@roundup.psfhosted.org>
In-reply-to
Content
I cannot reproduce. Taking a rectangle as an example,
canvas.bbox(canvas.create_rectangle(5, 5, 100, 100, width=1))
returns `(4, 4, 101, 101)` (rather than `(5, 5, 100, 100)`) because of rounding while calculating the outline.

As a result, running
canvas.create_rectangle(canvas.bbox(canvas.create_rectangle(5, 5, 100, 100, width=1)), width=1, outline="yellow")
we see a black outline inside a yellow one (as to be expected).

Could we please have a minimal script to help diagnose the problem?
History
Date User Action Args
2021-01-22 16:23:08epainesetrecipients: + epaine, serhiy.storchaka, rhoffmann
2021-01-22 16:23:08epainesetmessageid: <1611332588.52.0.427700071198.issue42992@roundup.psfhosted.org>
2021-01-22 16:23:08epainelinkissue42992 messages
2021-01-22 16:23:08epainecreate