当前位置: 首页>>代码示例>>Python>>正文


Python tempfile._mkstemp_inner方法代码示例

本文整理汇总了Python中tempfile._mkstemp_inner方法的典型用法代码示例。如果您正苦于以下问题:Python tempfile._mkstemp_inner方法的具体用法?Python tempfile._mkstemp_inner怎么用?Python tempfile._mkstemp_inner使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tempfile的用法示例。


在下文中一共展示了tempfile._mkstemp_inner方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_basic_with_bytes_names

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_basic_with_bytes_names(self):
        # _mkstemp_inner can create files when given name parts all
        # specified as bytes.
        dir_b = tempfile.gettempdirb()
        self.do_create(dir=dir_b, suf=b"").write(b"blat")
        self.do_create(dir=dir_b, pre=b"a").write(b"blat")
        self.do_create(dir=dir_b, suf=b"b").write(b"blat")
        self.do_create(dir=dir_b, pre=b"a", suf=b"b").write(b"blat")
        self.do_create(dir=dir_b, pre=b"aa", suf=b".txt").write(b"blat")
        # Can't mix str & binary types in the args.
        with self.assertRaises(TypeError):
            self.do_create(dir="", suf=b"").write(b"blat")
        with self.assertRaises(TypeError):
            self.do_create(dir=dir_b, pre="").write(b"blat")
        with self.assertRaises(TypeError):
            self.do_create(dir=dir_b, pre=b"", suf="").write(b"blat") 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:18,代码来源:test_tempfile.py

示例2: __init__

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def __init__(self, dir, pre, suf, bin):
            if bin: flags = self._bflags
            else:   flags = self._tflags

            (self.fd, self.name) = tempfile._mkstemp_inner(dir, pre, suf, flags) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:7,代码来源:test_tempfile.py

示例3: do_create

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def do_create(self, dir=None, pre="", suf="", bin=1):
        if dir is None:
            dir = tempfile.gettempdir()
        try:
            file = self.mkstemped(dir, pre, suf, bin)
        except:
            self.failOnException("_mkstemp_inner")

        self.nameCheck(file.name, dir, pre, suf)
        return file 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:12,代码来源:test_tempfile.py

示例4: test_basic

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_basic(self):
        # _mkstemp_inner can create files
        self.do_create().write("blat")
        self.do_create(pre="a").write("blat")
        self.do_create(suf="b").write("blat")
        self.do_create(pre="a", suf="b").write("blat")
        self.do_create(pre="aa", suf=".txt").write("blat") 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:9,代码来源:test_tempfile.py

示例5: test_basic_many

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_basic_many(self):
        # _mkstemp_inner can create many files (stochastic)
        extant = range(TEST_FILES)
        for i in extant:
            extant[i] = self.do_create(pre="aa") 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:7,代码来源:test_tempfile.py

示例6: test_choose_directory

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_choose_directory(self):
        # _mkstemp_inner can create files in a user-selected directory
        dir = tempfile.mkdtemp()
        try:
            self.do_create(dir=dir).write("blat")
        finally:
            os.rmdir(dir) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:9,代码来源:test_tempfile.py

示例7: test_noinherit

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_noinherit(self):
        # _mkstemp_inner file handles are not inherited by child processes

        if support.verbose:
            v="v"
        else:
            v="q"

        file = self.do_create()
        fd = "%d" % file.fd

        try:
            me = __file__
        except NameError:
            me = sys.argv[0]

        # We have to exec something, so that FD_CLOEXEC will take
        # effect.  The core of this test is therefore in
        # tf_inherit_check.py, which see.
        tester = os.path.join(os.path.dirname(os.path.abspath(me)),
                              "tf_inherit_check.py")

        # On Windows a spawn* /path/ with embedded spaces shouldn't be quoted,
        # but an arg with embedded spaces should be decorated with double
        # quotes on each end
        if sys.platform in ('win32',):
            decorated = '"%s"' % sys.executable
            tester = '"%s"' % tester
        else:
            decorated = sys.executable

        retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
        self.assertFalse(retval < 0,
                    "child process caught fatal signal %d" % -retval)
        self.assertFalse(retval > 0, "child process reports failure %d"%retval) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:37,代码来源:test_tempfile.py

示例8: test_textmode

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_textmode(self):
        # _mkstemp_inner can create files in text mode

        self.do_create(bin=0).write("blat\n")
        # XXX should test that the file really is a text file 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:7,代码来源:test_tempfile.py

示例9: make_temp

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def make_temp(self):
        return tempfile._mkstemp_inner(tempfile.gettempdir(),
                                       tempfile.template,
                                       '',
                                       tempfile._bin_openflags) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:7,代码来源:test_tempfile.py

示例10: test_collision_with_existing_file

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_collision_with_existing_file(self):
        # _mkstemp_inner tries another name when a file with
        # the chosen name already exists
        with _inside_empty_temp_dir(), \
             _mock_candidate_names('aaa', 'aaa', 'bbb'):
            (fd1, name1) = self.make_temp()
            os.close(fd1)
            self.assertTrue(name1.endswith('aaa'))

            (fd2, name2) = self.make_temp()
            os.close(fd2)
            self.assertTrue(name2.endswith('bbb')) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:14,代码来源:test_tempfile.py

示例11: test_collision_with_existing_directory

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_collision_with_existing_directory(self):
        # _mkstemp_inner tries another name when a directory with
        # the chosen name already exists
        with _inside_empty_temp_dir(), \
             _mock_candidate_names('aaa', 'aaa', 'bbb'):
            dir = tempfile.mkdtemp()
            self.assertTrue(dir.endswith('aaa'))

            (fd, name) = self.make_temp()
            os.close(fd)
            self.assertTrue(name.endswith('bbb')) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:13,代码来源:test_tempfile.py

示例12: test_noinherit

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_noinherit(self):
        # _mkstemp_inner file handles are not inherited by child processes
        if not has_spawnl:
            return            # ugh, can't use SkipTest.

        if support.verbose:
            v="v"
        else:
            v="q"

        file = self.do_create()
        fd = "%d" % file.fd

        try:
            me = __file__
        except NameError:
            me = sys.argv[0]

        # We have to exec something, so that FD_CLOEXEC will take
        # effect.  The core of this test is therefore in
        # tf_inherit_check.py, which see.
        tester = os.path.join(os.path.dirname(os.path.abspath(me)),
                              "tf_inherit_check.py")

        # On Windows a spawn* /path/ with embedded spaces shouldn't be quoted,
        # but an arg with embedded spaces should be decorated with double
        # quotes on each end
        if sys.platform in ('win32',):
            decorated = '"%s"' % sys.executable
            tester = '"%s"' % tester
        else:
            decorated = sys.executable

        retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
        self.assertFalse(retval < 0,
                    "child process caught fatal signal %d" % -retval)
        self.assertFalse(retval > 0, "child process reports failure %d"%retval) 
开发者ID:dxwu,项目名称:BinderFilter,代码行数:39,代码来源:test_tempfile.py

示例13: test_textmode

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_textmode(self):
        # _mkstemp_inner can create files in text mode
        if not has_textmode:
            return            # ugh, can't use SkipTest.

        self.do_create(bin=0).write("blat\n")
        # XXX should test that the file really is a text file 
开发者ID:dxwu,项目名称:BinderFilter,代码行数:9,代码来源:test_tempfile.py

示例14: default_mkstemp_inner

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def default_mkstemp_inner(self):
        return tempfile._mkstemp_inner(tempfile.gettempdir(),
                                       tempfile.template,
                                       '',
                                       tempfile._bin_openflags) 
开发者ID:aliyun,项目名称:oss-ftp,代码行数:7,代码来源:test_tempfile.py

示例15: test_collision_with_existing_file

# 需要导入模块: import tempfile [as 别名]
# 或者: from tempfile import _mkstemp_inner [as 别名]
def test_collision_with_existing_file(self):
        # _mkstemp_inner tries another name when a file with
        # the chosen name already exists
        with _inside_empty_temp_dir(), \
             _mock_candidate_names('aaa', 'aaa', 'bbb'):
            (fd1, name1) = self.default_mkstemp_inner()
            os.close(fd1)
            self.assertTrue(name1.endswith('aaa'))

            (fd2, name2) = self.default_mkstemp_inner()
            os.close(fd2)
            self.assertTrue(name2.endswith('bbb')) 
开发者ID:aliyun,项目名称:oss-ftp,代码行数:14,代码来源:test_tempfile.py


注:本文中的tempfile._mkstemp_inner方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。