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 addons_zz
Recipients addons_zz
Date 2019-01-29.12:52:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1548766331.46.0.0833286868767.issue35849@roundup.psfhosted.org>
In-reply-to
Content
Instead of doing:
```
         10056.0 function calls in 0.006 seconds

   Ordered by: internal time

   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
     1.0    0.002    0.002    0.006    0.006 benchmark_tests.py:121(logging_mod_log_debuglog_off)
  5000.0    0.002    0.000    0.004    0.000 F:\Python\lib\logging\__init__.py:1362(debug)
  5000.0    0.001    0.000    0.001    0.000 F:\Python\lib\logging\__init__.py:1620(isEnabledFor)
```

Do:
```
         10,056.0 function calls in 0.006 seconds

   Ordered by: internal time

   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
      1.0    0.002    0.002    0.006    0.006 benchmark_tests.py:121(logging_mod_log_debuglog_off)
  5,000.0    0.002    0.000    0.004    0.000 F:\Python\lib\logging\__init__.py:1362(debug)
  5,000.0    0.001    0.000    0.001    0.000 F:\Python\lib\logging\__init__.py:1620(isEnabledFor)
```
History
Date User Action Args
2019-01-29 12:52:15addons_zzsetrecipients: + addons_zz
2019-01-29 12:52:11addons_zzsetmessageid: <1548766331.46.0.0833286868767.issue35849@roundup.psfhosted.org>
2019-01-29 12:52:11addons_zzlinkissue35849 messages
2019-01-29 12:52:11addons_zzcreate