<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto">Python’s decline is in not growing. <br><br><div id="AppleMailSignature" dir="ltr">Sent from my iPhone</div><div dir="ltr"><br>On Feb 3, 2019, at 11:20 AM, Ned Batchelder <<a href="mailto:ned@nedbatchelder.com">ned@nedbatchelder.com</a>> wrote:<br><br></div><blockquote type="cite"><div dir="ltr">
  
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  
  
    <p>James, you say below, "This kind of readability issue,
      datetime.now, is an example of what’s contributing to Python’s
      decline."</p>
    <p>Do you have any evidence of Python's decline?  Lots of metrics
      (albeit simplistic ones) point to Python growing in popularity:</p>
    <ul>
      <li><a class="moz-txt-link-freetext" href="https://www.techrepublic.com/article/fastest-growing-programming-language-pythons-popularity-is-still-climbing/">https://www.techrepublic.com/article/fastest-growing-programming-language-pythons-popularity-is-still-climbing/</a></li>
      <li><a class="moz-txt-link-freetext" href="https://www.netguru.com/blog/why-python-is-growing-so-quickly-future-trends">https://www.netguru.com/blog/why-python-is-growing-so-quickly-future-trends</a></li>
      <li><a class="moz-txt-link-freetext" href="https://www.economist.com/graphic-detail/2018/07/26/python-is-becoming-the-worlds-most-popular-coding-language">https://www.economist.com/graphic-detail/2018/07/26/python-is-becoming-the-worlds-most-popular-coding-language</a><br>
      </li>
    </ul>
    <p>Are there indicators we are missing?<br>
    </p>
    <p>--Ned.<br>
    </p>
    <div class="moz-cite-prefix">On 2/2/19 11:56 PM, James Lu wrote:<br>
    </div>
    <blockquote type="cite" cite="mid:B1DDB34E-59FA-4AD1-AA16-D4063FC5A306@gmail.com">
      <pre class="moz-quote-pre" wrap="">Sent from my iPhone

</pre>
      <blockquote type="cite">
        <pre class="moz-quote-pre" wrap="">On Feb 2, 2019, at 3:41 AM, Steven D'Aprano <a class="moz-txt-link-rfc2396E" href="mailto:steve@pearwood.info"><steve@pearwood.info></a> wrote:

</pre>
        <blockquote type="cite">
          <pre class="moz-quote-pre" wrap="">On Sat, Feb 02, 2019 at 12:06:47AM +0100, Anders Hovmöller wrote:

</pre>
          <blockquote type="cite">
            <pre class="moz-quote-pre" wrap="">- the status quo means "no change", so there is no hassle there;
</pre>
          </blockquote>
          <pre class="moz-quote-pre" wrap="">Not quite true. There is a constant hassle of "do I need to write 
datetime.datetime.now() or datetime.now()?"
</pre>
        </blockquote>
        <pre class="moz-quote-pre" wrap="">My point was that there is no hassle from *making a change* if you don't 
actually make a change. (There may, or may not, be other, unrelated 
hassles.)

Besides, I'm not seeing that this is any worse than any other import. Do 
I call spam.Eggs.make() or Eggs.make()? If you don't remember what you 
imported, the names don't make much difference.

I accept that datetime.datetime reads a bit funny and is a bit annoying. 
If we had the keys to the time machine and could go back a decade to 
version 3.0, or even further back to 1.5 or whenever the datetime module 
was first created, it would be nice to change it so that the class was 
DateTime. But changing it *now* is not free, it has real, serious costs 
which are probably greater than the benefit gained.
</pre>
      </blockquote>
      <pre class="moz-quote-pre" wrap="">Why can’t we put “now” as a property of the module itself, reccomend that, and formally deprecate but never actually remove datetime.datetime.now?
</pre>
      <blockquote type="cite">
        <pre class="moz-quote-pre" wrap=""></pre>
        <blockquote type="cite">
          <pre class="moz-quote-pre" wrap="">I solved this at work by changing all imports to follow the "from 
datetime import datetime" pattern and hard banning the other 
statically in CI. But before that people suffered for years.
</pre>
        </blockquote>
        <pre class="moz-quote-pre" wrap="">Oh how they must have suffered *wink*

I'm surprised that you don't do this:

from datetime import datetime as DateTime


</pre>
        <blockquote type="cite">
          <pre class="moz-quote-pre" wrap="">I have a colleague who likes to point that the future is longer than 
the past. It's important to keep that perspective.
</pre>
        </blockquote>
        <pre class="moz-quote-pre" wrap="">Actually, no, on average, the projected lifespan of technologies, 
companies and cultural memes is about the same as their current age. It 
might last less, or it might last more, but the statistical expectation 
is about the same as the current age. So on average, "the future" is 
about the same as "the past".

Python has been around not quite 30 years now, so we can expect that it 
will probably last another 30 years. But chances are not good that it 
will be around in 300 years.
</pre>
      </blockquote>
      <pre class="moz-quote-pre" wrap="">A big reason why projects last as long as you say they last is that the maintainers get un-ambitious, they get used to relaxing in the language they know so well, they are no longer keen on change.

This kind of readability issue, datetime.now, is an example of what’s contributing to Python’s decline.

Bottom line: if someone submits a PR for this, will anyone merge it?
</pre>
      <blockquote type="cite">
        <pre class="moz-quote-pre" wrap="">-- 
Steve
_______________________________________________
Python-ideas mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Python-ideas@python.org">Python-ideas@python.org</a>
<a class="moz-txt-link-freetext" href="https://mail.python.org/mailman/listinfo/python-ideas">https://mail.python.org/mailman/listinfo/python-ideas</a>
Code of Conduct: <a class="moz-txt-link-freetext" href="http://python.org/psf/codeofconduct/">http://python.org/psf/codeofconduct/</a>
</pre>
      </blockquote>
      <pre class="moz-quote-pre" wrap="">_______________________________________________
Python-ideas mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Python-ideas@python.org">Python-ideas@python.org</a>
<a class="moz-txt-link-freetext" href="https://mail.python.org/mailman/listinfo/python-ideas">https://mail.python.org/mailman/listinfo/python-ideas</a>
Code of Conduct: <a class="moz-txt-link-freetext" href="http://python.org/psf/codeofconduct/">http://python.org/psf/codeofconduct/</a>
</pre>
    </blockquote>
  

</div></blockquote></body></html>