Home
last modified time | relevance | path

Searched refs:stat_float_times (Results 1 – 15 of 15) sorted by relevance

/external/python/pyfakefs/pyfakefs/
Dhelpers.py144 return self.stat_float_times()
191 def stat_float_times(cls, newvalue: Optional[bool] = None) -> bool: member in FakeStatResult
Dfake_filesystem.py3946 def stat_float_times(newvalue: Optional[bool] = None) -> bool: member in FakeOsModule
3957 return FakeStatResult.stat_float_times(newvalue)
/external/python/cpython2/Doc/library/
Dos.path.rst130 If :func:`os.stat_float_times` returns ``True``, the result is a floating point
143 If :func:`os.stat_float_times` returns ``True``, the result is a floating point
Dos.rst1393 If :func:`stat_float_times` returns ``True``, the time values are floats, measuring
1395 See :func:`stat_float_times` for further discussion.
1457 .. function:: stat_float_times([newvalue])
/external/python/pyfakefs/pyfakefs/tests/
Dfake_os_test.py3760 stat_float_times = fake_filesystem.FakeOsModule.stat_float_times()
3761 fake_filesystem.FakeOsModule.stat_float_times(False)
3790 fake_filesystem.FakeOsModule.stat_float_times(stat_float_times)
3793 stat_float_times = fake_filesystem.FakeOsModule.stat_float_times()
3794 fake_filesystem.FakeOsModule.stat_float_times(False)
3809 self.os.stat_float_times(True) # first time float time
3815 self.os.stat_float_times(False) # reverting to int
3822 self.os.stat_float_times(True)
3834 fake_filesystem.FakeOsModule.stat_float_times(stat_float_times)
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a3.rst940 Remove the os.stat_float_times() function. It was introduced in Python 2.3
/external/python/cpython2/Modules/
Dposixmodule.c1439 stat_float_times(PyObject* self, PyObject *args) in stat_float_times() function
8915 {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__},
/external/python/cpython3/Doc/whatsnew/
D2.3.rst1373 represented as integers, unless :func:`os.stat_float_times` is invoked to enable
1378 >>> os.stat_float_times(True)
D3.3.rst2242 * The :func:`os.stat_float_times` function is deprecated.
D2.5.rst1445 * The :mod:`os` module underwent several changes. The :attr:`stat_float_times`
D3.7.rst2135 * The ``os.stat_float_times()`` function has been removed. It was introduced in
/external/python/cpython2/Doc/whatsnew/
D2.3.rst1373 represented as integers, unless :func:`os.stat_float_times` is invoked to enable
1378 >>> os.stat_float_times(True)
D2.5.rst1444 * The :mod:`os` module underwent several changes. The :attr:`stat_float_times`
/external/python/cpython2/Misc/
DHISTORY1529 - stat_float_times is now True.
5326 after stat_float_times has been called.
/external/python/cpython3/Misc/
DHISTORY7331 - Issue #14711: os.stat_float_times() has been deprecated.
18913 - stat_float_times is now True.
22710 after stat_float_times has been called.