Searched refs:_mkstemp_inner (Results 1 - 2 of 2) sorted by relevance
/third_party/python/Lib/ |
H A D | tempfile.py | 243 def _mkstemp_inner(dir, pre, suf, flags, output_type): function 357 return _mkstemp_inner(dir, prefix, suffix, flags, output_type) 576 fd, name = _mkstemp_inner(dir, prefix, suffix, flags, output_type) 661 # Fallback to _mkstemp_inner(). 666 fd, name = _mkstemp_inner(dir, prefix, suffix, flags, output_type)
|
/third_party/python/Lib/test/ |
H A D | test_tempfile.py | 370 """Test the internal function _mkstemp_inner.""" 383 (self.fd, self.name) = tempfile._mkstemp_inner(dir, pre, suf, flags, output_type) 409 # _mkstemp_inner can create files 417 # _mkstemp_inner can create files when given name parts all 434 # _mkstemp_inner can create many files (stochastic) 440 # _mkstemp_inner can create files in a user-selected directory 451 # _mkstemp_inner creates files with the proper mode 466 # _mkstemp_inner file handles are not inherited by child processes 504 # _mkstemp_inner can create files in text mode 514 return tempfile._mkstemp_inner(tempfil [all...] |
Completed in 3 milliseconds