• Przemysław Suliga's avatar
    Used time.monotonic() instead of time.time() where applicable. · af5ec222
    Przemysław Suliga yazdı
    time.monotonic() available from Python 3.3:
    
    - Nicely communicates a narrow intent of "get a local system monotonic
      clock time" instead of possible "get a not necessarily accurate Unix
      time stamp because it needs to be communicated to outside of this
      process/machine" when time.time() is used.
      
    - Its result isn't affected by the system clock updates.
    
    There are two classes of time.time() uses changed to time.monotonic()
    by this change:
    
    - measuring time taken to run some code.
    
    - setting and checking a "close_at" threshold for for persistent db
      connections (django/db/backends/base/base.py).
    af5ec222
Adı
Son kayıt (commit)
Son güncelleme
.tx Loading commit data...
django Loading commit data...
docs Loading commit data...
extras Loading commit data...
js_tests Loading commit data...
scripts Loading commit data...
tests Loading commit data...
.editorconfig Loading commit data...
.eslintignore Loading commit data...
.eslintrc Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.hgignore Loading commit data...
AUTHORS Loading commit data...
CONTRIBUTING.rst Loading commit data...
Gruntfile.js Loading commit data...
INSTALL Loading commit data...
LICENSE Loading commit data...
LICENSE.python Loading commit data...
MANIFEST.in Loading commit data...
README.rst Loading commit data...
package.json Loading commit data...
setup.cfg Loading commit data...
setup.py Loading commit data...
tox.ini Loading commit data...