Enrique A Tobis added the comment:
Thanks! Got it. Sorry for the noise.
--
___
Python tracker
<http://bugs.python.org/issue17199>
___
___
Python-bugs-list mailin
Changes by Enrique A Tobis :
--
keywords: +patch
Added file: http://bugs.python.org/file29054/mywork.patch
___
Python tracker
<http://bugs.python.org/issue17
New submission from Enrique A Tobis:
import logging
f = logging.StrFormatStyle('{asctimer}')
print(f.usesTime())
f = logging.PercentStyle('%(astimer)s')
print(f.usesTime())
prints
True
False
and I think it should print
False
False
--
components: Library (Lib)
m