Searched refs:stat_float_times (Results 1 – 15 of 15) sorted by relevance
/external/python/pyfakefs/pyfakefs/ |
D | helpers.py | 144 return self.stat_float_times() 191 def stat_float_times(cls, newvalue: Optional[bool] = None) -> bool: member in FakeStatResult
|
D | fake_filesystem.py | 3946 def stat_float_times(newvalue: Optional[bool] = None) -> bool: member in FakeOsModule 3957 return FakeStatResult.stat_float_times(newvalue)
|
/external/python/cpython2/Doc/library/ |
D | os.path.rst | 130 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
|
D | os.rst | 1393 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/ |
D | fake_os_test.py | 3760 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/ |
D | 3.7.0a3.rst | 940 Remove the os.stat_float_times() function. It was introduced in Python 2.3
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 1439 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/ |
D | 2.3.rst | 1373 represented as integers, unless :func:`os.stat_float_times` is invoked to enable 1378 >>> os.stat_float_times(True)
|
D | 3.3.rst | 2242 * The :func:`os.stat_float_times` function is deprecated.
|
D | 2.5.rst | 1445 * The :mod:`os` module underwent several changes. The :attr:`stat_float_times`
|
D | 3.7.rst | 2135 * The ``os.stat_float_times()`` function has been removed. It was introduced in
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.3.rst | 1373 represented as integers, unless :func:`os.stat_float_times` is invoked to enable 1378 >>> os.stat_float_times(True)
|
D | 2.5.rst | 1444 * The :mod:`os` module underwent several changes. The :attr:`stat_float_times`
|
/external/python/cpython2/Misc/ |
D | HISTORY | 1529 - stat_float_times is now True. 5326 after stat_float_times has been called.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 7331 - Issue #14711: os.stat_float_times() has been deprecated. 18913 - stat_float_times is now True. 22710 after stat_float_times has been called.
|