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 rhettinger
Recipients benjamin.peterson, eric.araujo, georg.brandl, gvanrossum, mark.dickinson, ncoghlan, pitrou, python-dev, rhettinger, sbaird, stutzbach, tim.peters, vstinner, waldir, zach.ware
Date 2016-08-10.20:31:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470861061.95.0.193121295206.issue12345@psf.upfronthosting.co.za>
In-reply-to
Content
Perhaps minds are already made up, but this may be the last chance to say that I think that this shouldn't go forward.

* The push to use of "tau" has the flavor a political fad or wishful thinking that may or may not succeed.  The math module should only implement established practice.

* Since not everyone knows or uses tau, its use would tend to make code less clear. As a reviewer, I would ask that code like "from math import tau" to be changed to "from math import tau as twopi".  The latter is more clear to most users (how many people would recognize "tau * r" when it occurs in the middle of a larger expression?).  

* I've surveyed engineers in my recent Python courses (often with Physics, EE, MaterialScience, DSP, or CompSci backgrounds and not a single one of them had heard of this constant).

* If people really wanted this, we would be seeing more cases of "tau = 2.0 * math.pi" in code.  Google searches and Github code search shows that this is very rare.

* It is already trivial to write "tau=2.0*pi" so why bother?

* Adding mysteriously named constants degrades the usability of the math module where many of the tools are currently self-evident but not all (
tau is a number, gamma is a function, and what the heck is a frexp?).

* Also, the name "tau" is already used for other purposes in various contexts (shear stress, proper time in relativity, torque, tau lepton, optical depth in astronomy, time contacts in RC circuits, etc).

If needed, I can survey the audiences at the upcoming SF PyData conference and the SF PyBay conference to see if any of the participants have any clue what this is about and whether they would support the addition.
History
Date User Action Args
2016-08-10 20:31:02rhettingersetrecipients: + rhettinger, gvanrossum, tim.peters, georg.brandl, mark.dickinson, ncoghlan, pitrou, vstinner, benjamin.peterson, stutzbach, eric.araujo, python-dev, sbaird, zach.ware, waldir
2016-08-10 20:31:01rhettingersetmessageid: <1470861061.95.0.193121295206.issue12345@psf.upfronthosting.co.za>
2016-08-10 20:31:01rhettingerlinkissue12345 messages
2016-08-10 20:31:01rhettingercreate