Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #109902
| From | MRAB <python@mrabarnett.plus.com> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Conversion: execfile --> exec |
| Date | 2016-06-13 15:11 +0100 |
| Message-ID | <mailman.40.1465827079.2288.python-list@python.org> (permalink) |
| References | <CAKyEaCuhNhRudhV_xMo6WGnePdjFvcZ=R2eDru7JjQUoHgB+tQ@mail.gmail.com> <b0590f59-7c17-3f69-f05a-6bfae53f8824@mrabarnett.plus.com> |
On 2016-06-13 14:24, Long Yang wrote:
> The python 2.x command is as following:
> ---------------------------
> info = {}
> execfile(join('chaco', '__init__.py'), info)
> ------------------------------
>
> But execfile has been removed in python 3.x.
> So my problem is how to convert the above to a 3.x based command?
>
> thanks very much
>
Open the file and pass it to exec:
info = {}
with open(join('chaco', '__init__.py')) as file:
exec(file.read(), info)
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Re: Conversion: execfile --> exec MRAB <python@mrabarnett.plus.com> - 2016-06-13 15:11 +0100
Re: Conversion: execfile --> exec Rustom Mody <rustompmody@gmail.com> - 2016-06-13 07:31 -0700
Re: Conversion: execfile --> exec Michael Selik <michael.selik@gmail.com> - 2016-06-13 17:18 +0000
Re: Conversion: execfile --> exec Rustom Mody <rustompmody@gmail.com> - 2016-06-13 10:45 -0700
Re: Conversion: execfile --> exec Michael Selik <michael.selik@gmail.com> - 2016-06-13 22:14 +0000
csiph-web