Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #39457

Re: NamedTemporaryFile does not match documentation

References <CANy1k1g4eJ+9aBArQm_r8k0iKKuaxf_wzKjdEjOkj7M0J7=N8A@mail.gmail.com>
Date 2013-02-22 07:54 +1100
Subject Re: NamedTemporaryFile does not match documentation
From Chris Angelico <rosuav@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.2195.1361480101.2939.python-list@python.org> (permalink)

Show all headers | View raw


On Fri, Feb 22, 2013 at 7:46 AM, Jason Friedman <jsf80238@gmail.com> wrote:
> Python 3.2.2 (default, Feb 14 2012, 08:06:31)
> [GCC 4.1.2 20080704 (Red Hat 4.1.2-50)] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
>>>> from tempfile import NamedTemporaryFile
>>>> f = NamedTemporaryFile(delete=False)

The default 'mode' is 'w+b', meaning that you need to send it binary,
not Unicode strings. Try adding mode='w+' to the constructor, and
possibly also an encoding= argument.

ChrisA

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: NamedTemporaryFile does not match documentation Chris Angelico <rosuav@gmail.com> - 2013-02-22 07:54 +1100

csiph-web