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 nicktimko
Recipients Yehuda, nicktimko
Date 2019-08-28.16:55:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567011317.44.0.578672676996.issue37968@roundup.psfhosted.org>
In-reply-to
Content
Resolving #1 as you suggest is next to impossible. Python can not deduce if you meant to call the function or just refer to its name. Admittedly, the latter is strange in non-interactive contexts, but it is valid.

#2, as far as I can tell Logo had an ARC command:

ARC angle radius

	draws an arc of a circle, with the turtle at the center, 
	with the specified radius, starting at the turtle's 
	heading and extending clockwise through the specified 
	angle.  The turtle does not move.

I guess I don't know the history about why there's turtle.circle in Python which *does* move the turtle, and has the center *not* at the turtle. Adding an equivalent "turtle.arc" function might be useful, though the naming would be a bit confusing. Can you propose a better name and define exactly how it would work?
History
Date User Action Args
2019-08-28 16:55:17nicktimkosetrecipients: + nicktimko, Yehuda
2019-08-28 16:55:17nicktimkosetmessageid: <1567011317.44.0.578672676996.issue37968@roundup.psfhosted.org>
2019-08-28 16:55:17nicktimkolinkissue37968 messages
2019-08-28 16:55:17nicktimkocreate